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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #229954;
}

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

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

.nav-asymmetric {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.nav-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    background: #ecf0f1;
    border-radius: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #27ae60;
}

.hero-asymmetric {
    margin-top: 80px;
    padding: 3rem 2rem;
    background: #f8f9fa;
}

.hero-offset-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-text-block {
    flex: 1;
    min-width: 300px;
    padding: 4rem 2rem 2rem 0;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #1a3a2e;
    margin-bottom: 1.5rem;
}

.hero-text-block p {
    font-size: 1.3rem;
    color: #555;
    max-width: 600px;
}

.hero-image-offset {
    flex: 1;
    min-width: 350px;
    margin-top: -2rem;
    background-color: #d4e8dd;
}

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

.intro-overlap {
    padding: 6rem 2rem;
    background: white;
}

.content-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.text-block-left {
    flex: 1.2;
    min-width: 320px;
    padding-right: 2rem;
}

.text-block-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.text-block-left p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #555;
}

.image-card-right {
    flex: 1;
    min-width: 300px;
    margin-top: 3rem;
    background-color: #c9ddd1;
}

.image-card-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.problem-section {
    padding: 5rem 2rem;
    background: #1a3a2e;
    color: white;
}

.diagonal-content {
    max-width: 1200px;
    margin: 0 auto;
}

.diagonal-content h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    max-width: 800px;
}

.split-irregular {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.problem-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #27ae60;
}

.problem-item.offset-top {
    margin-top: 4rem;
}

.problem-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #52c983;
}

.problem-item p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.problem-item a {
    color: #52c983;
    text-decoration: none;
}

.problem-item a:hover {
    text-decoration: underline;
}

.insight-offset {
    position: relative;
    padding: 8rem 2rem;
    overflow: hidden;
}

.insight-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.insight-image-bg {
    position: absolute;
    right: -5%;
    top: 0;
    width: 55%;
    height: 100%;
    background-color: #b8d4c7;
}

.insight-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.insight-text-float {
    position: relative;
    max-width: 600px;
    background: white;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.insight-text-float h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a3a2e;
}

.insight-text-float p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.services-preview {
    padding: 6rem 2rem;
    background: #f4f7f5;
}

.services-preview h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.services-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.service-card.card-offset-1 {
    margin-top: 0;
}

.service-card.card-offset-2 {
    margin-top: 2rem;
}

.service-card.card-offset-3 {
    margin-top: 4rem;
}

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

.service-card h3 {
    font-size: 1.5rem;
    padding: 1.5rem 1.5rem 0.5rem;
    color: #2c3e50;
}

.service-card p {
    padding: 0 1.5rem;
    color: #555;
    flex: 1;
}

.service-card .price {
    display: block;
    padding: 1rem 1.5rem 0.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
}

.service-card .btn-primary {
    display: block;
    margin: 1rem 1.5rem 1.5rem;
    padding: 0.875rem;
    background: #27ae60;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.service-card .btn-primary:hover {
    background: #229954;
}

.trust-irregular {
    padding: 6rem 2rem;
    background: white;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.testimonials-offset {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background: #f8f9fa;
    padding: 2rem;
    border-left: 4px solid #27ae60;
    max-width: 750px;
}

.testimonial.testimonial-1 {
    align-self: flex-start;
}

.testimonial.testimonial-2 {
    align-self: center;
    margin-left: 3rem;
}

.testimonial.testimonial-3 {
    align-self: flex-end;
}

.testimonial p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.cta-diagonal {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1a3a2e 0%, #2c7a4f 100%);
    color: white;
}

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

.form-container-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-container-asymmetric p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
}

.science-section {
    padding: 5rem 2rem;
    background: #ecf0f1;
}

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

.science-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.science-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.science-content a {
    color: #27ae60;
    text-decoration: none;
}

.science-content a:hover {
    text-decoration: underline;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

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

.footer-block {
    flex: 1;
    min-width: 220px;
}

.footer-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #52c983;
}

.footer-block h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #52c983;
}

.footer-block p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-block ul li {
    margin-bottom: 0.5rem;
}

.footer-block a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: #52c983;
}

.footer-references ol {
    padding-left: 1.5rem;
}

.footer-references ol li {
    margin-bottom: 0.75rem;
    color: #bdc3c7;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #52c983;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #7f8c8d;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .hero-text-block p {
        font-size: 1.1rem;
    }

    .hero-image-offset {
        margin-top: 1rem;
    }

    .text-block-left h2 {
        font-size: 2rem;
    }

    .diagonal-content h2 {
        font-size: 2rem;
    }

    .problem-item.offset-top {
        margin-top: 0;
    }

    .insight-image-bg {
        position: relative;
        width: 100%;
        height: 300px;
        right: 0;
        margin-bottom: 2rem;
    }

    .service-card.card-offset-2,
    .service-card.card-offset-3 {
        margin-top: 0;
    }

    .testimonial.testimonial-2 {
        margin-left: 0;
    }

    .nav-links {
        gap: 1rem;
    }
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a3a2e 0%, #27ae60 100%);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

.thanks-content {
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.thanks-content .btn-home {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: #1a3a2e;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-content .btn-home:hover {
    background: #ecf0f1;
    transform: translateY(-2px);
}

.page-header {
    margin-top: 80px;
    padding: 4rem 2rem;
    background: #1a3a2e;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-content h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.page-content h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.75rem;
    color: #34495e;
}

.page-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #555;
}

.contact-info {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid #27ae60;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-info p {
    margin-bottom: 0.75rem;
    color: #555;
}

.contact-info .email-display {
    color: #2c3e50;
    font-weight: 500;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.service-detail {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.service-detail h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.service-detail .service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1rem;
}

.service-detail p {
    color: #555;
    line-height: 1.7;
}