* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #3498db;
}

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    background-color: #ecf0f1;
    border-radius: 4px;
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
}

.hero-magazine {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 8px;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.intro-editorial {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.content-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.content-narrow p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #34495e;
    text-align: justify;
}

.services-grid-magazine {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.section-header-offset {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding-left: 10%;
}

.section-header-offset h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.section-intro {
    font-size: 1.25rem;
    color: #7f8c8d;
}

.services-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 320px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content {
    padding: 1.75rem;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.service-content p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1rem 0;
}

.btn-select {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-select:hover {
    background-color: #2980b9;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.form-container-magazine {
    max-width: 900px;
    margin: 0 auto;
}

.form-intro {
    margin-bottom: 2rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.125rem;
    color: #7f8c8d;
}

.booking-form {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group input[readonly] {
    background-color: #ecf0f1;
    cursor: not-allowed;
}

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #229954;
}

.testimonials-offset {
    padding: 5rem 2rem;
    background-color: #ecf0f1;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.cta-visual {
    position: relative;
    padding: 8rem 2rem;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-overlay {
    text-align: center;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem;
    border-radius: 8px;
    max-width: 700px;
}

.cta-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-overlay p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-cta:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1 1 280px;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498db;
}

.disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    line-height: 1.5;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1 1 500px;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #229954;
}

.btn-cookie-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background-color: #7f8c8d;
}

.page-hero-slim {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero-slim h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
}

.about-story {
    padding: 4rem 2rem;
}

.content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.story-text {
    flex: 1 1 500px;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-text p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #34495e;
    line-height: 1.7;
}

.story-visual {
    flex: 1 1 400px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.story-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.value-item p {
    color: #555;
    line-height: 1.6;
}

.team-approach {
    padding: 4rem 2rem;
}

.expertise-visual {
    position: relative;
    padding: 6rem 2rem;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expertise-overlay {
    text-align: center;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.6);
    padding: 3rem;
    border-radius: 8px;
    max-width: 900px;
}

.expertise-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.stats-inline {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat span {
    font-size: 1rem;
    color: #ecf0f1;
}

.philosophy-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-visual {
    flex: 1 1 450px;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-detail-content {
    flex: 1 1 500px;
}

.service-detail-content h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1rem;
}

.service-detail-content p {
    font-size: 1.125rem;
    color: #34495e;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.btn-service {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 1rem;
}

.btn-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.booking-cta {
    background-color: #2c3e50;
    padding: 5rem 2rem;
}

.cta-content-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content-centered p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

.btn-cta-large {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 1.125rem 3rem;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.contact-info {
    padding: 3rem 2rem;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-primary,
.contact-legal,
.contact-responsibility,
.contact-dispute,
.contact-liability,
.contact-copyright {
    margin-bottom: 3rem;
}

.contact-primary h2,
.contact-legal h2,
.contact-responsibility h2,
.contact-dispute h2,
.contact-liability h2,
.contact-copyright h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact-details,
.legal-details {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h3 {
    font-size: 1.25rem;
    color: #3498db;
    margin-bottom: 0.75rem;
}

.contact-item p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.7;
}

.email-display {
    font-weight: 600;
    color: #2c3e50;
}

.legal-details p {
    margin-bottom: 0.75rem;
    color: #34495e;
    line-height: 1.6;
}

.contact-dispute p,
.contact-liability p,
.contact-copyright p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-dispute a {
    color: #3498db;
    text-decoration: none;
}

.contact-dispute a:hover {
    text-decoration: underline;
}

.thanks-page {
    padding: 5rem 2rem;
    min-height: 60vh;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-details h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.thanks-details p {
    font-size: 1.125rem;
    color: #3498db;
    font-weight: 600;
}

.thanks-next {
    text-align: left;
    margin-bottom: 2rem;
}

.thanks-next h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.next-steps {
    list-style: none;
    counter-reset: steps;
    padding-left: 0;
}

.next-steps li {
    counter-increment: steps;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6;
}

.next-steps li:before {
    content: counter(steps);
    position: absolute;
    left: 0;
    width: 2rem;
    height: 2rem;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

.legal-page {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.legal-updated {
    color: #7f8c8d;
    font-size: 1rem;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.5rem;
    color: #3498db;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.legal-section p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: #3498db;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .testimonial {
        flex: 1 1 100%;
    }

    .value-item {
        flex: 1 1 100%;
    }

    .content-split {
        flex-direction: column;
    }

    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
    }

    .stats-inline {
        gap: 2rem;
    }

    .stat strong {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie,
    .btn-cookie-reject {
        width: 100%;
    }
}