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

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-split .hero-content {
    flex: 1;
    padding: 4rem 5%;
    background: #f8f9fa;
}

.hero-split .hero-image {
    flex: 1;
    background-color: #e8f5e9;
    overflow: hidden;
}

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

.hero-split h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a472a;
}

.hero-split p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #546e7a;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #229954;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #34495e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-secondary:hover {
    background: #2c3e50;
}

.intro-split {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

.intro-split .intro-image {
    flex: 1;
    background-color: #e3f2fd;
    overflow: hidden;
}

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

.intro-split .intro-content {
    flex: 1;
    padding: 4rem 5%;
}

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

.intro-split h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
}

.intro-split p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #546e7a;
}

.services-preview {
    padding: 5rem 5%;
    background: #fafafa;
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a472a;
}

.section-header-centered p {
    font-size: 1.2rem;
    color: #546e7a;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.service-card .service-image {
    flex: 1;
    background-color: #f0f4f8;
    overflow: hidden;
}

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

.service-card .service-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a472a;
}

.service-card p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #546e7a;
}

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

.btn-service {
    padding: 0.9rem 2rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

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

.trust-split {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

.trust-split .trust-content {
    flex: 1;
    padding: 4rem 5%;
    background: #ffffff;
}

.trust-split .trust-image {
    flex: 1;
    background-color: #fff3e0;
    overflow: hidden;
}

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

.trust-split h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
}

.trust-split p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #546e7a;
}

.stats-inline {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #546e7a;
}

.form-section {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a472a;
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #546e7a;
}

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

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

.form-group input {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

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

.testimonials-split {
    display: flex;
    padding: 5rem 5%;
    background: #ffffff;
    gap: 3rem;
}

.testimonial-content {
    flex: 1;
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid #27ae60;
}

.testimonial-content blockquote {
    font-style: italic;
    color: #34495e;
}

.testimonial-content blockquote p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.testimonial-content footer {
    font-style: normal;
    font-weight: 600;
    color: #546e7a;
    font-size: 0.95rem;
}

.science-section {
    padding: 5rem 5%;
    background: #e8f5e9;
}

.science-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.science-content-centered h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
}

.science-content-centered p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
}

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

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

.final-cta-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
    background: linear-gradient(135deg, #1a472a 0%, #27ae60 100%);
}

.cta-content {
    flex: 1;
    padding: 4rem 10%;
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
}

.page-hero-split .hero-content {
    flex: 1;
    padding: 4rem 5%;
    background: #f0f4f8;
}

.page-hero-split .hero-image {
    flex: 1;
    background-color: #e8f5e9;
    overflow: hidden;
}

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

.page-hero-split h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
}

.page-hero-split p {
    font-size: 1.2rem;
    color: #546e7a;
}

.page-hero-centered {
    padding: 5rem 5%;
    background: #f8f9fa;
    text-align: center;
}

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

.hero-content-centered h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
}

.hero-content-centered p {
    font-size: 1.2rem;
    color: #546e7a;
}

.story-split {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

.story-split .story-image {
    flex: 1;
    background-color: #e3f2fd;
    overflow: hidden;
}

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

.story-split .story-content {
    flex: 1;
    padding: 4rem 5%;
}

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

.story-split h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
}

.story-split p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #546e7a;
}

.values-split {
    display: flex;
    min-height: 70vh;
    align-items: center;
    background: #fafafa;
}

.values-split .values-content {
    flex: 1;
    padding: 4rem 5%;
}

.values-split .values-image {
    flex: 1;
    background-color: #fff3e0;
    overflow: hidden;
}

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

.values-split h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a472a;
}

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #27ae60;
}

.value-item p {
    font-size: 1.05rem;
    color: #546e7a;
}

.expertise-centered {
    padding: 5rem 5%;
    background: #ffffff;
}

.expertise-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.expertise-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
}

.expertise-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #546e7a;
}

.approach-split {
    display: flex;
    min-height: 70vh;
    align-items: center;
    background: #f8f9fa;
}

.approach-split .approach-image {
    flex: 1;
    background-color: #e8f5e9;
    overflow: hidden;
}

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

.approach-split .approach-content {
    flex: 1;
    padding: 4rem 5%;
}

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

.approach-split h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
}

.approach-split p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #546e7a;
}

.team-centered {
    padding: 5rem 5%;
    background: #ffffff;
    text-align: center;
}

.team-centered h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
}

.team-centered p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #546e7a;
}

.cta-split-about {
    display: flex;
    min-height: 50vh;
    align-items: center;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

.cta-about-content {
    flex: 1;
    padding: 4rem 10%;
    text-align: center;
    color: #ffffff;
}

.cta-about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-about-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.service-detail-split {
    display: flex;
    min-height: 70vh;
    align-items: center;
    margin-bottom: 3rem;
}

.service-detail-split .service-detail-content {
    flex: 1;
    padding: 4rem 5%;
}

.service-detail-split .service-detail-image {
    flex: 1;
    background-color: #f0f4f8;
    overflow: hidden;
}

.service-detail-split .service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.service-detail-split h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
}

.service-detail-split p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #546e7a;
}

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

.contact-split {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
    margin-bottom: 3rem;
}

.contact-split .contact-info {
    flex: 1;
    padding: 4rem 5%;
    background: #f8f9fa;
}

.contact-split .contact-map {
    flex: 1;
    background-color: #e3f2fd;
    overflow: hidden;
}

.contact-split .contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-split h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a472a;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #27ae60;
}

.contact-item p {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.6;
}

.contact-approach {
    padding: 5rem 5%;
    background: #ffffff;
}

.approach-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.approach-centered h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
}

.approach-centered p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #546e7a;
}

.contact-cta-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
}

.contact-cta-split .cta-image {
    flex: 1;
    background-color: #e8f5e9;
    overflow: hidden;
}

.contact-cta-split .cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-cta-split .cta-content {
    flex: 1;
    padding: 4rem 5%;
    background: #f8f9fa;
}

.contact-cta-split.reverse {
    flex-direction: row-reverse;
}

.contact-cta-split h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
}

.contact-cta-split p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #546e7a;
}

.thanks-section {
    padding: 8rem 5%;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #546e7a;
}

.thanks-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    font-weight: 600;
    color: #1a472a;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #34495e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #2c3e50;
}

.legal-page {
    padding: 5rem 5%;
    background: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
}

.legal-intro {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: #546e7a;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #27ae60;
}

.legal-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

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

.legal-content li {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    color: #546e7a;
    line-height: 1.7;
}

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

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

.legal-content strong {
    color: #2c3e50;
}

footer {
    background: #1a472a;
    color: #ffffff;
    padding: 4rem 5% 2rem;
}

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

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    font-size: 0.95rem;
    color: #b8dac4;
    line-height: 1.6;
}

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

.footer-section li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: #b8dac4;
    text-decoration: none;
    transition: color 0.3s;
}

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

.references {
    margin-left: 1.2rem;
}

.references li {
    font-size: 0.9rem;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.08);
    border-radius: 6px;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #b8dac4;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.btn-reject {
    background: #7f8c8d;
    color: #ffffff;
}

.btn-reject:hover {
    background: #6c7a7b;
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-split,
    .intro-split,
    .trust-split,
    .story-split,
    .values-split,
    .approach-split,
    .service-detail-split,
    .contact-split,
    .contact-cta-split,
    .page-hero-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .story-split.reverse,
    .approach-split.reverse,
    .service-detail-split.reverse,
    .contact-cta-split.reverse {
        flex-direction: column;
    }

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

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

    .stats-inline {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
    }

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

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

    .hero-split h1,
    .page-hero-split h1,
    .hero-content-centered h1 {
        font-size: 2rem;
    }
}