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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d3436;
    background-color: #ffffff;
}

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

.cookie-banner.active {
    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: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.cookie-accept:hover {
    background-color: #1f4538;
}

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

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

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

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

.brand-logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f4f;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

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

.main-nav a:hover {
    color: #2c5f4f;
}

.ad-disclosure {
    font-size: 12px;
    color: #636e72;
    padding: 4px 12px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.hero-asymmetric {
    padding: 80px 40px;
    background-color: #fafbfc;
}

.hero-offset-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
}

.hero-text-block {
    flex: 1;
    padding-right: 40px;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #2d3436;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-text-block p {
    font-size: 18px;
    color: #636e72;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.cta-primary:hover {
    background-color: #1f4538;
    transform: translateY(-2px);
}

.hero-image-overlap {
    flex: 1;
    height: 520px;
    border-radius: 12px;
    overflow: hidden;
    transform: translateY(40px);
}

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

.intro-offset {
    padding: 120px 40px;
    background-color: #ffffff;
}

.intro-blocks {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.intro-left {
    flex: 1.2;
    padding-top: 40px;
}

.intro-left h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: #2d3436;
    line-height: 1.3;
}

.intro-left p {
    font-size: 18px;
    color: #636e72;
    line-height: 1.8;
}

.intro-right-card {
    flex: 1;
    padding: 48px;
    border-radius: 12px;
    transform: translateY(-60px);
}

.intro-right-card h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #2d3436;
}

.intro-right-card ul {
    list-style: none;
    margin-bottom: 32px;
}

.intro-right-card li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: #636e72;
    font-size: 16px;
}

.intro-right-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f4f;
    font-weight: bold;
}

.link-arrow {
    color: #2c5f4f;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    color: #1f4538;
    transform: translateX(4px);
    display: inline-block;
}

.image-text-overlap {
    padding: 100px 40px;
    background-color: #fafbfc;
}

.overlap-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    align-items: center;
    position: relative;
}

.image-background {
    flex: 1;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
}

.image-background img {
    width: 100%;
    height: 100%;
}

.text-card-float {
    flex: 1;
    background-color: #ffffff;
    padding: 56px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    margin-left: -80px;
    z-index: 2;
}

.text-card-float h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2d3436;
}

.text-card-float p {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 16px;
    line-height: 1.7;
}

.text-card-float a {
    color: #2c5f4f;
    text-decoration: none;
    font-weight: 600;
}

.text-card-float a:hover {
    text-decoration: underline;
}

.services-preview {
    padding: 120px 40px;
    background-color: #ffffff;
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 60px;
    padding-left: 120px;
}

.services-header-offset h2 {
    font-size: 48px;
    color: #2d3436;
}

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

.service-card {
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-large {
    flex: 1 1 calc(60% - 12px);
    min-width: 320px;
}

.service-medium {
    flex: 1 1 calc(40% - 12px);
    min-width: 280px;
}

.service-small {
    flex: 1 1 calc(35% - 12px);
    min-width: 280px;
}

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

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

.service-content {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2d3436;
}

.service-content p {
    font-size: 15px;
    color: #636e72;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f4f;
}

.testimonial-section {
    padding: 100px 40px;
    background-color: #fafbfc;
}

.testimonial-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    border-left: 4px solid #2c5f4f;
    transform: rotate(-1deg);
}

.testimonial-card:nth-child(2) {
    transform: rotate(1deg) translateY(20px);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #2d3436;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card cite {
    font-style: normal;
    color: #636e72;
    font-weight: 600;
}

.cta-section-offset {
    padding: 120px 40px;
    background-color: #ffffff;
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    align-items: stretch;
}

.cta-background {
    flex: 1.2;
    padding: 80px 60px;
    border-radius: 12px;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
}

.form-card-float {
    flex: 1;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
    margin-left: -60px;
    z-index: 2;
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #2d3436;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2d3436;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dfe6e9;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background-color: #1f4538;
    transform: translateY(-2px);
}

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

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

.references-container h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2d3436;
}

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

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

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

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

.disclaimer-section {
    padding: 60px 40px;
    background-color: #fff9f0;
}

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

.disclaimer-text {
    font-size: 14px;
    color: #636e72;
    line-height: 1.7;
    text-align: center;
}

.disclaimer-text strong {
    color: #2d3436;
}

.main-footer {
    background-color: #2d3436;
    color: #ffffff;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column p {
    color: #b2bec3;
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-column li {
    margin-bottom: 10px;
}

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #636e72;
    text-align: center;
}

.footer-bottom p {
    color: #b2bec3;
    font-size: 14px;
}

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

    .hero-image-overlap {
        transform: translateY(0);
        width: 100%;
    }

    .intro-blocks {
        flex-direction: column;
        gap: 40px;
    }

    .intro-right-card {
        transform: translateY(0);
    }

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

    .text-card-float {
        margin-left: 0;
        margin-top: -40px;
    }

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

    .form-card-float {
        margin-left: 0;
        margin-top: 20px;
    }

    .testimonial-offset {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 15px 20px;
    }

    .main-nav ul {
        gap: 16px;
    }

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

    .intro-left h2 {
        font-size: 32px;
    }

    .services-header-offset {
        padding-left: 0;
    }

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