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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2f3f;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #236850;
}

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e1e4e8;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a2f3f;
    text-decoration: none;
}

.ad-notice {
    font-size: 12px;
    color: #6c757d;
    padding: 4px 12px;
    background-color: #e9ecef;
    border-radius: 4px;
}

.header-right {
    display: flex;
    gap: 32px;
}

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

.header-right a:hover {
    color: #2a7a5e;
}

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

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a2f3f;
    margin-bottom: 24px;
}

.hero-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 32px;
    max-width: 560px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2a7a5e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

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

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

.intro-narrative {
    padding: 80px 60px;
    background-color: #ffffff;
}

.narrative-container {
    max-width: 800px;
    margin: 0 auto;
}

.narrative-container p {
    font-size: 19px;
    line-height: 1.8;
    color: #3d4852;
    margin-bottom: 24px;
}

.benefits-split {
    background-color: #f8f9fa;
}

.benefit-card {
    display: flex;
    min-height: 480px;
}

.benefit-card.reverse {
    flex-direction: row-reverse;
}

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

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

.benefit-text {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.benefit-text h3 {
    font-size: 32px;
    color: #1a2f3f;
    margin-bottom: 20px;
}

.benefit-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.research-section {
    padding: 80px 60px;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.research-container h2 {
    font-size: 36px;
    margin-bottom: 32px;
}

.research-container p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.research-container a {
    color: #6cb5e0;
    text-decoration: none;
}

.research-container a:hover {
    text-decoration: underline;
}

.services-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.services-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-header h2 {
    font-size: 40px;
    color: #1a2f3f;
    margin-bottom: 16px;
}

.services-header p {
    font-size: 18px;
    color: #4a5568;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card.selected {
    border: 2px solid #2a7a5e;
}

.service-card h3 {
    font-size: 24px;
    color: #1a2f3f;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 24px;
    flex-grow: 1;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #2a7a5e;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 24px;
    background-color: #2a7a5e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 36px;
    color: #1a2f3f;
    margin-bottom: 16px;
}

.form-container > p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 24px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit {
    padding: 16px 36px;
    background-color: #2a7a5e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.disclaimer-section {
    padding: 60px;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
}

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

.disclaimer-container p {
    font-size: 14px;
    line-height: 1.7;
    color: #664d03;
}

.references-section {
    padding: 60px;
    background-color: #f8f9fa;
}

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

.references-container h3 {
    font-size: 20px;
    color: #1a2f3f;
    margin-bottom: 16px;
}

.references-container ol {
    padding-left: 24px;
}

.references-container li {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.references-container a {
    color: #2a7a5e;
    text-decoration: none;
}

.references-container a:hover {
    text-decoration: underline;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px 60px;
    background-color: #1a2f3f;
    color: #ffffff;
}

.footer-brand {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-left p {
    font-size: 14px;
    color: #a0aec0;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.page-hero-split {
    display: flex;
    min-height: 400px;
    background-color: #f8f9fa;
}

.page-hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-hero-content h1 {
    font-size: 44px;
    color: #1a2f3f;
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 18px;
    color: #4a5568;
}

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

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

.about-story {
    padding: 80px 60px;
    background-color: #ffffff;
}

.story-container {
    max-width: 800px;
    margin: 0 auto;
}

.story-container h2 {
    font-size: 36px;
    color: #1a2f3f;
    margin-bottom: 32px;
}

.story-container p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 24px;
}

.team-split {
    background-color: #f8f9fa;
}

.team-card {
    display: flex;
    min-height: 420px;
}

.team-card.reverse {
    flex-direction: row-reverse;
}

.team-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.team-content h3 {
    font-size: 30px;
    color: #1a2f3f;
    margin-bottom: 20px;
}

.team-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

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

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

.values-section {
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.values-container h2 {
    font-size: 36px;
    color: #1a2f3f;
    margin-bottom: 48px;
    text-align: center;
}

.values-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
}

.value-item h4 {
    font-size: 22px;
    color: #2a7a5e;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.cta-about {
    padding: 80px 60px;
    background-color: #2c3e50;
    text-align: center;
}

.cta-about-content h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-about-content p {
    font-size: 18px;
    color: #cbd5e0;
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 36px;
    background-color: #2a7a5e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    padding: 16px 36px;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.services-detailed {
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    min-height: 520px;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 32px;
    color: #1a2f3f;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 16px;
}

.service-price-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 28px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.price-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

.price-value {
    font-size: 32px;
    color: #2a7a5e;
    font-weight: 700;
}

.btn-service-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2a7a5e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-service-cta:hover {
    background-color: #236850;
}

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

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

.services-cta-section {
    padding: 80px 60px;
    background-color: #2c3e50;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 16px;
}

.services-cta-content p {
    font-size: 18px;
    color: #cbd5e0;
    margin-bottom: 36px;
}

.btn-large-cta {
    display: inline-block;
    padding: 18px 48px;
    background-color: #2a7a5e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-large-cta:hover {
    background-color: #236850;
}

.contact-hero {
    padding: 80px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 44px;
    color: #1a2f3f;
    margin-bottom: 16px;
}

.contact-hero-content p {
    font-size: 18px;
    color: #4a5568;
}

.contact-split-section {
    display: flex;
    min-height: 600px;
}

.contact-info-box {
    flex: 1;
    padding: 60px;
    background-color: #ffffff;
}

.contact-info-box h2 {
    font-size: 32px;
    color: #1a2f3f;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 36px;
}

.contact-item h3 {
    font-size: 18px;
    color: #2a7a5e;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-note {
    margin-top: 48px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

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

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

.contact-map-section {
    padding: 0;
}

.map-placeholder {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    font-size: 18px;
    color: #4a5568;
    font-weight: 500;
}

.thanks-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

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

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 40px;
    color: #1a2f3f;
    margin-bottom: 16px;
}

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
}

.thanks-details {
    margin-bottom: 32px;
    padding: 20px;
    background-color: #e8f5f0;
    border-radius: 6px;
}

.thanks-details p {
    font-size: 16px;
    color: #2a7a5e;
    margin: 0;
}

.thanks-info {
    margin-bottom: 48px;
}

.thanks-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 12px;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-page {
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 40px;
    color: #1a2f3f;
    margin-bottom: 12px;
}

.legal-date {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 26px;
    color: #1a2f3f;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-container h3 {
    font-size: 20px;
    color: #2a7a5e;
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-container h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 12px;
}

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

.legal-container ul,
.legal-container ol {
    margin-bottom: 24px;
    padding-left: 28px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 8px;
}

.legal-container strong {
    color: #2c3e50;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .header-split {
        padding: 20px 40px;
    }

    .hero-split,
    .benefit-card,
    .team-card,
    .service-detail-card,
    .contact-split-section {
        flex-direction: column;
    }

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

    .hero-left,
    .benefit-text,
    .team-content,
    .service-detail-content,
    .contact-info-box {
        padding: 40px;
    }

    .services-section,
    .form-section,
    .about-story,
    .values-section,
    .cta-about,
    .services-cta-section,
    .contact-hero,
    .thanks-section,
    .legal-page {
        padding: 60px 40px;
    }
}

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

    .header-left {
        flex-direction: column;
        gap: 12px;
    }

    .header-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

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

    .form-row {
        flex-direction: column;
    }

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

    .service-card {
        min-width: 100%;
    }

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

    .footer-split {
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}
