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

:root {
    --primary-color: #2C5F2D;
    --primary-dark: #1A3A1B;
    --secondary-color: #F4F4F2;
    --text-dark: #1A1A1A;
    --text-light: #4A4A4A;
    --border-color: #E0E0E0;
    --accent-color: #7FA650;
    --white: #FFFFFF;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background-color: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 60px 40px;
    background-color: var(--secondary-color);
}

.hero-text-content {
    max-width: 540px;
}

.hero-split h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 500;
}

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

.hero-right {
    overflow: hidden;
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 16px;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.insight-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.insight-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.lead-text {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.5;
}

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

.split-layout {
    display: flex;
    align-items: stretch;
}

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

.split-left,
.split-right {
    flex: 1;
}

.split-left img,
.split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-box {
    padding: 60px 50px;
}

.problem-section {
    background-color: var(--secondary-color);
}

.problem-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

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

.services-grid {
    padding: 80px 20px;
    background-color: var(--white);
}

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

.services-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    max-width: 380px;
    background-color: var(--secondary-color);
    padding: 35px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-header {
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.service-price {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
}

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

.testimonial-section {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: var(--white);
}

.testimonial-large {
    text-align: center;
}

.testimonial-large p {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-large cite {
    font-size: 18px;
    font-style: normal;
    opacity: 0.9;
}

.process-section {
    background-color: var(--white);
}

.process-steps {
    margin-top: 30px;
}

.step {
    margin-bottom: 35px;
    display: flex;
    gap: 20px;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step p {
    font-size: 16px;
    color: var(--text-light);
}

.trust-section {
    padding: 80px 20px;
    background-color: var(--secondary-color);
    text-align: center;
}

.trust-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 200px;
}

.benefits-reveal {
    background-color: var(--white);
}

.benefit-intro {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 18px;
}

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

.testimonials-inline {
    padding: 80px 20px;
    background-color: var(--secondary-color);
}

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 14px;
    font-style: normal;
    color: var(--text-light);
}

.cta-form-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.cta-form-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
}

.form-intro {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

.contact-form button {
    width: 100%;
    margin-top: 10px;
}

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

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    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;
}

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

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

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

.page-hero {
    background-color: var(--secondary-color);
    padding: 80px 20px 60px;
    text-align: center;
}

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

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

.about-story {
    background-color: var(--white);
}

.philosophy-section {
    padding: 80px 20px;
    background-color: var(--secondary-color);
}

.philosophy-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

.team-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.team-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
}

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1 1 calc(25% - 40px);
    min-width: 240px;
    max-width: 280px;
    text-align: center;
}

.team-member img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.member-role {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.values-section {
    background-color: var(--secondary-color);
}

.values-list {
    margin-top: 30px;
}

.value-item {
    margin-bottom: 30px;
}

.value-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 16px;
    color: var(--text-light);
}

.experience-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.experience-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

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

.cta-section {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.text-center {
    text-align: center;
}

.services-detail {
    padding: 60px 20px;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
}

.service-detail-header h2 {
    font-size: 32px;
}

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

.service-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-detail-card h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.detail-list {
    list-style: none;
    margin: 20px 0;
}

.detail-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
}

.detail-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
}

.custom-solution-section {
    padding: 80px 20px;
    background-color: var(--secondary-color);
}

.custom-solution-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.custom-solution-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-section {
    padding: 60px 20px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.contact-info,
.contact-map {
    flex: 1;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

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

.contact-item .note {
    font-size: 14px;
    font-style: italic;
    margin-top: 10px;
}

.map-placeholder {
    background-color: var(--secondary-color);
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.approach-section {
    padding: 80px 20px;
    background-color: var(--secondary-color);
}

.approach-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.timeline {
    margin-top: 40px;
}

.timeline-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

.timeline-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 50%;
}

.timeline-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 16px;
    color: var(--text-light);
}

.faq-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.faq-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.final-cta-section {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: var(--white);
}

.final-cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.final-cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.thanks-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.thanks-icon {
    margin: 0 auto 30px;
    width: 80px;
}

.thanks-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

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

.thanks-details {
    margin: 40px 0;
}

.thanks-details p {
    font-size: 18px;
    margin-bottom: 15px;
}

.next-steps {
    margin: 50px 0;
    background-color: var(--secondary-color);
    padding: 40px;
    border-radius: 8px;
}

.next-steps h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

.steps-list {
    list-style: none;
    counter-reset: steps;
}

.steps-list li {
    counter-increment: steps;
    padding: 15px 0;
    font-size: 16px;
    padding-left: 40px;
    position: relative;
}

.steps-list li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
}

.thanks-extra {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.thanks-extra p {
    font-size: 16px;
    color: var(--text-light);
}

.legal-page {
    padding: 60px 20px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.update-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
        font-size: 14px;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 40px 20px;
    }

    .hero-split h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-right {
        min-height: 300px;
    }

    .split-layout,
    .split-reverse {
        flex-direction: column;
    }

    .content-box {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .services-wrapper {
        flex-direction: column;
    }

    .service-card {
        max-width: 100%;
    }

    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

    .stat-item p {
        max-width: 100%;
    }

    .testimonial-grid {
        flex-direction: column;
    }

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

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

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

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        max-width: 320px;
    }

    .contact-grid {
        flex-direction: column;
    }

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

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
