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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

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

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

.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a472a;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    background: #f8f9fa;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    color: #6c757d;
    border: 1px solid #e9ecef;
}

.nav-main {
    display: flex;
    gap: 30px;
}

.nav-main a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

.nav-main a:hover {
    color: #1a472a;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #f8faf9 0%, #e8f1ed 100%);
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a472a;
    font-weight: 800;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 32px;
    max-width: 540px;
}

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

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

.cta-primary {
    display: inline-block;
    background: #1a472a;
    color: #ffffff;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #0f3119;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 71, 42, 0.25);
}

.intro-section {
    padding: 100px 0;
}

.container-split {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-split.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a472a;
    line-height: 1.3;
    font-weight: 700;
}

.split-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 18px;
}

.benefits-list {
    list-style: none;
    margin-top: 28px;
}

.benefits-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
    color: #34495e;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a472a;
    font-weight: 700;
    font-size: 20px;
}

.services-highlight {
    padding: 100px 0;
    background: #f8faf9;
}

.services-highlight h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a472a;
    font-weight: 700;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    width: calc(33.333% - 22px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

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

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

.service-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2c3e50;
    font-weight: 600;
}

.service-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    font-size: 26px;
    font-weight: 700;
    color: #1a472a;
    margin-bottom: 18px;
}

.btn-select {
    background: #1a472a;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background: #0f3119;
    transform: translateY(-2px);
}

.form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f1ed 0%, #d4e5dc 100%);
}

.container-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a472a;
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    color: #546e7a;
}

.booking-form {
    background: #ffffff;
    padding: 44px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e6ed;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input:disabled {
    background: #f5f7fa;
    color: #34495e;
}

.btn-submit {
    width: 100%;
    background: #1a472a;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #0f3119;
    transform: translateY(-2px);
}

.trust-section {
    padding: 100px 0;
    background: #ffffff;
}

.testimonials {
    padding: 100px 0;
    background: #f8faf9;
}

.testimonials h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a472a;
    font-weight: 700;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonial {
    flex: 1;
    background: #ffffff;
    padding: 36px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #1a472a;
    font-size: 15px;
}

.footer {
    background: #1a2f35;
    color: #ffffff;
    padding: 60px 0 20px;
}

.container-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    margin-bottom: 18px;
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
}

.footer-section p {
    color: #b0bec5;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-section a {
    display: block;
    color: #b0bec5;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 40px 0;
    border-top: 1px solid #2d4349;
    text-align: center;
}

.footer-bottom p {
    color: #90a4ae;
    font-size: 14px;
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 13px;
    color: #78909c;
    margin-top: 20px;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 2000;
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: #ecf0f1;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-cookie,
.btn-cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie {
    background: #1a472a;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #0f3119;
    transform: translateY(-2px);
}

.btn-cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-hero {
    background: linear-gradient(135deg, #f8faf9 0%, #e8f1ed 100%);
    padding: 100px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a472a;
    font-weight: 800;
}

.page-hero p {
    font-size: 19px;
    color: #546e7a;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    padding: 80px 0;
}

.service-detail {
    margin-bottom: 80px;
}

.detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.detail-content {
    flex: 1;
}

.detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a472a;
    font-weight: 700;
}

.detail-content h3 {
    font-size: 22px;
    margin: 28px 0 14px;
    color: #2c3e50;
    font-weight: 600;
}

.detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 16px;
}

.detail-content ul {
    margin: 18px 0;
    padding-left: 24px;
}

.detail-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 8px;
}

.detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    height: 450px;
}

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

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #1a472a;
    margin: 28px 0 20px;
}

.about-intro {
    padding: 80px 0;
}

.values-section {
    padding: 80px 0;
    background: #f8faf9;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a472a;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 36px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a472a;
    font-weight: 600;
}

.value-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
}

.team-section {
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a472a;
    font-weight: 700;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 50px;
}

.team-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.team-member {
    flex: 1;
    text-align: center;
}

.member-image {
    width: 100%;
    height: 320px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

.team-member h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a472a;
    font-weight: 600;
}

.team-member p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.approach-section {
    padding: 80px 0;
    background: #f8faf9;
}

.cta-link {
    display: inline-block;
    color: #1a472a;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    margin-top: 20px;
    padding-bottom: 4px;
    border-bottom: 2px solid #1a472a;
    transition: all 0.3s;
}

.cta-link:hover {
    color: #0f3119;
    border-bottom-color: #0f3119;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a472a;
    font-weight: 700;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.info-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
}

.contact-visual {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    height: 600px;
}

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

.faq-section {
    padding: 80px 0;
    background: #f8faf9;
}

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a472a;
    font-weight: 700;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-item {
    background: #ffffff;
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a472a;
    font-weight: 600;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
}

.thanks-section {
    padding: 100px 0;
}

.container-thanks {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a472a;
    font-weight: 800;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 24px;
}

.confirmation-box {
    background: #f8faf9;
    padding: 32px;
    border-radius: 10px;
    margin: 32px 0;
    border-left: 4px solid #1a472a;
}

.confirmation-box h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a472a;
    font-weight: 600;
}

.next-steps {
    list-style: none;
}

.next-steps li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 16px;
    color: #34495e;
    line-height: 1.7;
}

.next-steps li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1a472a;
    font-weight: 700;
    font-size: 18px;
}

.thanks-note {
    font-size: 16px;
    color: #546e7a;
    font-style: italic;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: #1a472a;
    color: #ffffff;
}

.btn-primary:hover {
    background: #0f3119;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #1a472a;
    border: 2px solid #1a472a;
}

.btn-secondary:hover {
    background: #f8faf9;
}

.thanks-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    height: 450px;
}

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

.legal-page {
    padding: 60px 0 100px;
}

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

.container-legal h1 {
    font-size: 44px;
    margin-bottom: 16px;
    color: #1a472a;
    font-weight: 800;
}

.legal-intro {
    font-size: 16px;
    color: #78909c;
    margin-bottom: 40px;
}

.container-legal h2 {
    font-size: 30px;
    margin: 40px 0 16px;
    color: #1a472a;
    font-weight: 700;
}

.container-legal h3 {
    font-size: 22px;
    margin: 28px 0 12px;
    color: #2c3e50;
    font-weight: 600;
}

.container-legal p {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 16px;
}

.container-legal ul {
    margin: 16px 0 24px;
    padding-left: 28px;
}

.container-legal li {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 10px;
}

.container-legal a {
    color: #1a472a;
    text-decoration: underline;
    transition: color 0.3s;
}

.container-legal a:hover {
    color: #0f3119;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cookie-table thead {
    background: #f8faf9;
}

.cookie-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: #1a472a;
    border-bottom: 2px solid #e0e6ed;
}

.cookie-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e0e6ed;
    color: #546e7a;
    font-size: 15px;
}

.cookie-table tbody tr:hover {
    background: #f8faf9;
}

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

    .hero-content {
        padding: 60px 40px;
    }

    .hero-image {
        height: 400px;
    }

    .container-split {
        flex-direction: column;
        gap: 40px;
    }

    .container-split.reverse {
        flex-direction: column;
    }

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

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

    .service-card {
        width: calc(50% - 16px);
    }

    .testimonial-grid {
        flex-direction: column;
    }

    .team-grid {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .container-header {
        flex-direction: column;
        gap: 16px;
        padding: 0 20px;
    }

    .nav-main {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .service-card {
        width: 100%;
    }

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

    .cookie-actions {
        justify-content: center;
    }

    .container-footer {
        flex-direction: column;
        gap: 32px;
    }

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