* {
    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;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2b3c;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

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

.ad-notice {
    background-color: #fef3e2;
    color: #8b6914;
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    border-radius: 4px;
    font-weight: 500;
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background-color: #f8f9fa;
}

.hero-text-content {
    max-width: 600px;
}

.hero-text-content h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #1a2b3c;
    font-weight: 800;
}

.hero-text-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a5f6b;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #1a2b3c;
}

.intro-section {
    padding: 5rem 0;
}

.split-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.split-content-reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: 3rem;
    align-items: center;
}

.content-block {
    flex: 1;
    padding: 2.5rem;
}

.content-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a2b3c;
    font-weight: 700;
}

.content-block p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: #4a5f6b;
}

.image-block {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.image-block img {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 400px;
}

.services-showcase {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.section-title-centered {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a2b3c;
    font-weight: 700;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

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

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

.service-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

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

.service-content {
    padding: 1.8rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a2b3c;
    font-weight: 700;
}

.service-content p {
    color: #4a5f6b;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.2rem;
}

.btn-select-service {
    background-color: #3498db;
    color: #ffffff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1rem;
}

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

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

.split-form-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a2b3c;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    color: #4a5f6b;
    line-height: 1.7;
}

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

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    padding: 0.9rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.05rem;
    transition: background-color 0.3s;
}

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

.trust-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #4a5f6b;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.2rem;
}

.footer {
    background-color: #1a2b3c;
    color: #ffffff;
    padding: 3rem 0 1rem 0;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-col p {
    color: #b8c9d4;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #b8c9d4;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-disclaimer {
    border-top: 1px solid #2c3e50;
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #b8c9d4;
    line-height: 1.5;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.5;
}

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

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

.btn-cookie-accept {
    background-color: #2ecc71;
    color: #ffffff;
}

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

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

.btn-cookie-reject:hover {
    background-color: #6c7a7b;
}

.page-hero {
    background-color: #f8f9fa;
    padding: 4rem 0 2rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: #1a2b3c;
    font-weight: 800;
}

.page-hero p {
    font-size: 1.2rem;
    color: #4a5f6b;
    margin-top: 1rem;
}

.about-content,
.philosophy-section,
.values-section,
.team-section {
    padding: 4rem 0;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a2b3c;
    font-weight: 700;
}

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

.services-detailed {
    padding: 3rem 0;
}

.service-detail-block {
    margin-bottom: 4rem;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 1.5rem 0;
}

.cta-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.cta-box {
    text-align: center;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a2b3c;
    font-weight: 700;
}

.cta-box p {
    font-size: 1.1rem;
    color: #4a5f6b;
    margin-bottom: 2rem;
}

.contact-content {
    padding: 3rem 0;
}

.contact-info-block {
    margin-bottom: 2rem;
}

.contact-info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a2b3c;
    font-weight: 700;
}

.contact-info-block p {
    color: #4a5f6b;
    line-height: 1.6;
}

.faq-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

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

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a2b3c;
    font-weight: 700;
}

.faq-item p {
    color: #4a5f6b;
    line-height: 1.6;
}

.thanks-section {
    padding: 5rem 0;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2ecc71;
    font-weight: 800;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #4a5f6b;
    margin-bottom: 1rem;
}

.thanks-next-steps {
    text-align: left;
    margin: 3rem 0;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a2b3c;
    font-weight: 700;
}

.thanks-next-steps ol {
    padding-left: 1.5rem;
}

.thanks-next-steps li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #4a5f6b;
}

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

.btn-primary {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1a2b3c;
}

.btn-secondary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

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

.legal-content {
    padding: 3rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a2b3c;
    font-weight: 800;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2b3c;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #4a5f6b;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.7rem;
    color: #4a5f6b;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

    .hero-text-content h1 {
        font-size: 2.5rem;
    }

    .split-content,
    .split-content-reverse,
    .split-form-layout {
        flex-direction: column;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}