* {
    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.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-left .logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    gap: 28px;
}

.nav-right a {
    color: #495057;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: #16a085;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #f8f9fa;
}

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

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

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

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

.cta-primary:hover {
    background-color: #138d75;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 160, 133, 0.3);
}

.hero-image {
    flex: 1;
    background-color: #34495e;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-asymmetric {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    align-items: center;
    background-color: #ffffff;
}

.intro-block {
    flex: 1.2;
}

.intro-block h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.intro-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
}

.intro-visual {
    flex: 1;
    position: relative;
}

.intro-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e9ecef;
}

.stat-overlay {
    position: absolute;
    bottom: 30px;
    right: -40px;
    background-color: #ffffff;
    padding: 26px 32px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #16a085;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: #6c757d;
    margin-top: 8px;
    max-width: 180px;
}

.services-preview {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.section-header-offset {
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #16a085;
    margin-bottom: 12px;
}

.section-header-offset h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
}

.services-split-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #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;
    min-width: 300px;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #dee2e6;
}

.service-card h3 {
    font-size: 21px;
    font-weight: 700;
    margin: 20px 24px 12px;
    color: #2c3e50;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 24px 16px;
    color: #5a6c7d;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #16a085;
    margin: 16px 24px;
}

.select-service {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 12px 24px;
    background-color: #16a085;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #138d75;
}

.trust-builder {
    padding: 100px 60px;
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    color: #ecf0f1;
}

.trust-stats {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 42px;
    font-weight: 800;
    color: #16a085;
    line-height: 1;
}

.stat-item span {
    font-size: 15px;
    color: #bdc3c7;
    margin-top: 10px;
}

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

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

.form-container h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
    text-align: center;
}

.form-container > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #5a6c7d;
    text-align: center;
}

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

.form-field {
    display: flex;
    flex-direction: column;
}

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

.form-field input,
.form-field select,
.form-field textarea {
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #16a085;
}

.submit-btn {
    padding: 14px 32px;
    background-color: #16a085;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.submit-btn:hover {
    background-color: #138d75;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 160, 133, 0.3);
}

.scientific-backing {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.scientific-backing h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.scientific-backing p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.scientific-backing a {
    color: #16a085;
    text-decoration: none;
    font-weight: 600;
}

.scientific-backing a:hover {
    text-decoration: underline;
}

.references h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.references li {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #5a6c7d;
}

.references li a {
    color: #16a085;
}

.main-footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 60px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    line-height: 1.8;
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-col a:hover {
    color: #16a085;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
    margin-bottom: 8px;
}

.footer-bottom .disclaimer {
    font-size: 12px;
    color: #7f8c8d;
    max-width: 900px;
    margin: 16px auto 0;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px 40px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #16a085;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #138d75;
}

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

.cookie-btn.reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

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

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #2c3e50;
}

.page-hero p {
    font-size: 19px;
    color: #5a6c7d;
}

.about-split {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
    align-items: center;
    background-color: #ffffff;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e9ecef;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #5a6c7d;
}

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

.mission-content {
    max-width: 900px;
    margin: 0 auto;
}

.mission-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

.mission-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

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

.values-grid h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.values-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    min-width: 280px;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.team-approach {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.team-approach h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.approach-steps {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1 1 calc(25% - 30px);
    min-width: 200px;
}

.step-number {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #16a085;
    background-color: rgba(22, 160, 133, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.step-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #5a6c7d;
}

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

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e9ecef;
}

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

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.service-detail-content ul {
    margin: 16px 0 24px 24px;
}

.service-detail-content li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #5a6c7d;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #16a085;
    margin: 24px 0 16px;
}

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

.cta-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.cta-section p {
    font-size: 17px;
    margin-bottom: 32px;
    color: #5a6c7d;
}

.cta-button {
    display: inline-block;
    padding: 16px 34px;
    background-color: #16a085;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #138d75;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 160, 133, 0.3);
}

.contact-info-section {
    padding: 60px 60px;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

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

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

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
    min-height: 400px;
}

.additional-info {
    padding: 60px 60px;
    background-color: #f8f9fa;
}

.additional-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.additional-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #5a6c7d;
    max-width: 800px;
}

.additional-info a {
    color: #16a085;
    font-weight: 600;
    text-decoration: none;
}

.additional-info a:hover {
    text-decoration: underline;
}

.thanks-section {
    padding: 120px 60px;
    background-color: #f8f9fa;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-container h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-container p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #5a6c7d;
}

#serviceConfirmation {
    font-weight: 600;
    color: #16a085;
}

.thanks-links {
    list-style: none;
    margin-top: 32px;
    padding: 0;
}

.thanks-links li {
    margin-bottom: 12px;
}

.thanks-links a {
    color: #16a085;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.thanks-links a:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 60px 60px 100px;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.legal-page ul,
.legal-page ol {
    margin: 16px 0 24px 32px;
}

.legal-page li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #5a6c7d;
}

.legal-page a {
    color: #16a085;
    text-decoration: none;
    font-weight: 600;
}

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

.legal-page em {
    font-size: 14px;
    color: #6c757d;
}

.legal-page strong {
    font-weight: 700;
    color: #2c3e50;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid #dee2e6;
}

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 700;
    color: #2c3e50;
}

.cookies-table td {
    font-size: 14px;
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-asymmetric,
    .about-split,
    .contact-layout,
    .service-detail-card {
        flex-direction: column;
    }

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

    .split-nav {
        flex-direction: column;
        gap: 16px;
    }

    .nav-right {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

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

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

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

    .approach-steps {
        flex-direction: column;
    }

    .stat-overlay {
        position: static;
        margin-top: 20px;
    }
}