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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #f4a261;
    --accent-color: #e76f51;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

.ad-disclosure {
    background: var(--bg-light);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 60px 5%;
    gap: 60px;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.hero-content-left {
    flex: 1;
    padding-right: 40px;
}

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.5;
}

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

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #234a30;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45,90,61,0.3);
}

.cta-secondary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #e09451;
    transform: translateY(-2px);
}

.story-block {
    padding: 80px 5%;
    background: var(--bg-white);
}

.story-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.story-narrow h2 {
    font-size: 42px;
    margin-bottom: 28px;
    line-height: 1.2;
}

.story-narrow p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.insight-asymmetric {
    display: flex;
    align-items: center;
    padding: 100px 5%;
    gap: 80px;
    background: var(--bg-light);
}

.insight-text-right {
    flex: 1;
    padding-left: 40px;
}

.insight-text-right h3 {
    font-size: 36px;
    margin-bottom: 24px;
}

.insight-text-right p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 18px;
}

.insight-text-right a {
    color: var(--primary-color);
    font-weight: 600;
}

.insight-image-left {
    flex: 1;
    background: #d4e4da;
}

.insight-image-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.trust-cards {
    padding: 100px 5%;
    background: var(--bg-white);
}

.section-title-center {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.cards-asymmetric {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-card {
    flex: 1;
    background: var(--bg-light);
    padding: 40px 32px;
    border-radius: 12px;
    transition: transform 0.3s;
}

.trust-card:hover {
    transform: translateY(-8px);
}

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

.card-offset-2 {
    margin-top: 40px;
}

.card-offset-3 {
    margin-top: 20px;
}

.card-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.trust-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.trust-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.trust-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.testimonials-flow {
    padding: 80px 5%;
    background: var(--primary-color);
    color: white;
}

.testimonial {
    max-width: 700px;
    margin-bottom: 40px;
    padding: 32px 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.testimonial-left {
    margin-left: 0;
    margin-right: auto;
}

.testimonial-right {
    margin-left: auto;
    margin-right: 0;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial-author {
    font-size: 14px;
    opacity: 0.9;
}

.services-reveal {
    padding: 100px 5%;
    background: var(--bg-white);
}

.services-title {
    font-size: 46px;
    text-align: center;
    margin-bottom: 20px;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.service-card {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.service-large {
    flex: 1 1 calc(60% - 15px);
}

.service-medium {
    flex: 1 1 calc(50% - 15px);
}

.service-small {
    flex: 1 1 calc(40% - 15px);
}

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

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-content a {
    color: var(--primary-color);
    font-weight: 600;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-select-service {
    background: var(--primary-color);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
}

.btn-select-service:hover {
    background: #234a30;
    transform: translateY(-2px);
}

.form-section {
    padding: 100px 5%;
    background: var(--bg-light);
}

.form-container-offset {
    max-width: 600px;
    margin-left: 0;
    background: var(--bg-white);
    padding: 50px 60px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.form-container-offset h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 32px;
}

.selected-service-display {
    background: var(--bg-light);
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    display: none;
}

.selected-service-display.active {
    display: block;
}

.label-service {
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

#selectedServiceName {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 700;
}

#selectedServicePrice {
    font-size: 20px;
    color: var(--accent-color);
    font-weight: 700;
    margin-left: 12px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #234a30;
}

.disclaimer-section {
    padding: 60px 5%;
    background: #fff8e1;
    border-top: 2px solid #ffd54f;
}

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

.disclaimer-content p {
    color: var(--text-dark);
    line-height: 1.7;
}

.footer-asymmetric {
    background: var(--text-dark);
    color: white;
    padding: 60px 5% 20px;
}

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

.footer-block {
    flex: 1;
}

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

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

.footer-block li {
    margin-bottom: 8px;
}

.footer-block a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-block a:hover {
    color: white;
}

.references {
    list-style: decimal;
    padding-left: 20px;
}

.references li {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 24px 5%;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    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;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--secondary-color);
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie-accept {
    background: var(--primary-color);
    color: white;
}

.btn-cookie-accept:hover {
    background: #234a30;
}

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

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

.page-hero-minimal {
    padding: 100px 5% 60px;
    text-align: center;
    background: var(--bg-light);
}

.page-hero-minimal h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.hero-lead {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 80px 5%;
    background: var(--bg-white);
}

.story-grid-asymmetric {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.story-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.7;
}

.story-image {
    flex: 1;
    background: #d4e4da;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.values-section {
    padding: 100px 5%;
    background: var(--bg-light);
}

.section-title-offset {
    font-size: 42px;
    margin-bottom: 60px;
    margin-left: 8%;
}

.values-asymmetric {
    display: flex;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.value-card {
    flex: 1;
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.value-position-1 {
    margin-top: 0;
}

.value-position-2 {
    margin-top: 50px;
}

.value-position-3 {
    margin-top: 25px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.approach-section {
    padding: 80px 5%;
    background: var(--bg-white);
}

.approach-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-image-left {
    flex: 1;
    background: #d4e4da;
}

.approach-image-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.approach-text-right {
    flex: 1;
}

.approach-text-right h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.approach-text-right p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.7;
}

.approach-text-right .cta-secondary {
    margin-top: 12px;
}

.services-detail-section {
    padding: 60px 5%;
    background: var(--bg-white);
}

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
}

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

.service-detail-image {
    flex: 1;
    background: #d4e4da;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

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

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

.service-detail-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    margin-bottom: 24px;
}

.feature-list li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-detail-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-services-bottom {
    padding: 80px 5%;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-services-bottom h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-services-bottom p {
    font-size: 18px;
    margin-bottom: 32px;
}

.contact-section {
    padding: 80px 5%;
    background: var(--bg-white);
}

.contact-layout-asymmetric {
    display: flex;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-left {
    flex: 1;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.email-display {
    color: var(--text-dark);
    font-weight: 600;
}

.contact-cta-right {
    flex: 1;
    background: var(--bg-light);
    padding: 50px 40px;
    border-radius: 12px;
}

.contact-cta-right h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.contact-cta-right p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.thanks-section {
    padding: 120px 5%;
    background: var(--bg-light);
    min-height: 70vh;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-white);
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.thanks-info {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.thanks-info p {
    margin-bottom: 12px;
}

.thanks-next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.steps-list {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 32px;
}

.steps-list li {
    padding-left: 32px;
    margin-bottom: 12px;
    position: relative;
}

.steps-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

.legal-page {
    padding: 60px 5%;
    background: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.legal-updated {
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-container p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-container ul,
.legal-container ol {
    margin-left: 20px;
    margin-bottom: 16px;
}

.legal-container li {
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-offset,
    .insight-asymmetric,
    .story-grid-asymmetric,
    .approach-layout,
    .contact-layout-asymmetric {
        flex-direction: column;
    }

    .cards-asymmetric,
    .values-asymmetric {
        flex-direction: column;
    }

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

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

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

@media (max-width: 768px) {
    .hero-content-left h1 {
        font-size: 38px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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