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

:root {
    --primary-green: #2d8e47;
    --light-green: #4caf50;
    --dark-green: #1b5e31;
    --accent-yellow: #fbc02d;
    --bg-light: #f8faf9;
    --bg-cream: #fefdfb;
    --text-dark: #1a2b1f;
    --text-gray: #5a6c64;
    --border-light: #e1e8e4;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 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: inherit;
}

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

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

.main-nav {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero-section {
    display: flex;
    flex-direction: column;
    min-height: 500px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
    padding: 60px 20px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

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

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    margin: 30px auto 0;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: fit-content;
}

.cta-primary:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 142, 71, 0.3);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-green);
    padding: 14px 28px;
    border-radius: 8px;
    border: 2px solid var(--primary-green);
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    width: fit-content;
}

.cta-secondary:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

.cta-text {
    color: var(--primary-green);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-text:hover {
    color: var(--dark-green);
    transform: translateX(5px);
}

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

.intro-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    text-align: center;
}

.intro-section p {
    font-size: 18px;
    color: var(--text-gray);
    text-align: center;
    line-height: 1.8;
}

.features-stacked {
    background-color: var(--bg-light);
    padding: 40px 0;
}

.feature-block {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    background-color: var(--white);
    margin-bottom: 2px;
}

.feature-block:nth-child(odd) {
    background-color: var(--bg-cream);
}

.feature-image {
    width: 100%;
    margin-bottom: 30px;
}

.feature-image img {
    width: 100%;
    border-radius: 8px;
}

.feature-content {
    width: 100%;
}

.feature-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature-content p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.process-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

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

.process-step {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--light-green);
    opacity: 0.3;
    margin-bottom: 10px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.services-preview {
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--white) 100%);
    padding: 80px 20px;
}

.services-preview h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

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

.trust-section {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.trust-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
}

.trust-reasons {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-item {
    background-color: var(--white);
    padding: 28px;
    border-radius: 8px;
    border-left: 3px solid var(--light-green);
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

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

.form-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45, 142, 71, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.cta-sticky-section {
    background-color: var(--primary-green);
    padding: 24px 20px;
    position: sticky;
    bottom: 0;
    z-index: 50;
    display: none;
}

.cta-sticky-section.visible {
    display: block;
}

.cta-sticky-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cta-sticky-section p {
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

.cta-sticky-btn {
    background-color: var(--white);
    color: var(--primary-green);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.cta-sticky-btn:hover {
    background-color: var(--bg-cream);
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-col ul li 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.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 43, 31, 0.97);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-content p {
    color: var(--white);
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background-color: var(--light-green);
}

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

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

.page-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 80px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.services-detailed {
    padding: 60px 0;
}

.service-detail {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    gap: 30px;
}

.service-detail:nth-child(even) {
    background-color: var(--bg-light);
}

.service-detail-content {
    width: 100%;
}

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

.service-detail-content p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.service-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: var(--text-gray);
}

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.price-label {
    font-size: 16px;
    color: var(--text-gray);
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-green);
}

.service-detail-image {
    width: 100%;
}

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
}

.cta-final {
    background-color: var(--bg-cream);
    padding: 80px 20px;
    text-align: center;
}

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

.cta-final p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

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

.about-story h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.about-story p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.about-values h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 12px;
    border-top: 4px solid var(--primary-green);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

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

.about-team h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.about-team p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-approach {
    background-color: var(--bg-cream);
    padding: 80px 20px;
}

.about-approach h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.approach-content {
    max-width: 800px;
    margin: 0 auto;
}

.approach-content p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.about-difference h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.difference-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.difference-list li {
    padding: 20px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.7;
    border-bottom: 1px solid var(--border-light);
}

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

.about-cta {
    background-color: var(--bg-light);
    padding: 80px 20px;
    text-align: center;
}

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

.about-cta p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.contact-info {
    padding: 60px 20px;
    background-color: var(--white);
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-card p:last-of-type {
    margin-bottom: 0;
}

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

.contact-note {
    font-size: 14px !important;
    color: var(--text-gray) !important;
    font-style: italic;
    margin-top: 12px !important;
}

.contact-faq {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.contact-faq h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.faq-item {
    background-color: var(--white);
    padding: 28px;
    margin-bottom: 16px;
    border-radius: 8px;
    border-left: 3px solid var(--light-green);
}

.faq-item h4 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

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

.contact-cta p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.thanks-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-info {
    background-color: var(--white);
    padding: 24px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid var(--primary-green);
}

.thanks-info p {
    margin-bottom: 0;
}

.thanks-note {
    font-size: 15px !important;
    margin-top: 30px !important;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
    align-items: center;
}

.legal-content {
    padding: 60px 20px;
    background-color: var(--white);
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.legal-content ul {
    margin: 16px 0;
    padding-left: 20px;
}

.legal-content ul li {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 8px;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: var(--white);
    border: 1px solid var(--border-light);
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.cookies-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookies-table td {
    font-size: 15px;
    color: var(--text-gray);
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero-section {
        flex-direction: row;
        align-items: center;
        min-height: 600px;
        padding: 80px 40px;
    }

    .hero-content {
        width: 50%;
        padding: 40px;
        margin: 0;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-image {
        width: 45%;
        margin: 0;
    }

    .feature-block {
        flex-direction: row;
        align-items: center;
        padding: 80px 40px;
        gap: 60px;
    }

    .feature-left {
        flex-direction: row;
    }

    .feature-right {
        flex-direction: row-reverse;
    }

    .feature-image {
        width: 45%;
        margin-bottom: 0;
    }

    .feature-content {
        width: 50%;
    }

    .process-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        width: calc(50% - 15px);
    }

    .services-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        width: calc(50% - 12px);
    }

    .trust-reasons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust-item {
        width: calc(50% - 15px);
    }

    .cta-sticky-section .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .service-detail {
        flex-direction: row;
        gap: 60px;
    }

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

    .service-detail-content,
    .service-detail-image {
        width: 48%;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        width: calc(50% - 12px);
    }

    .contact-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-card {
        width: calc(33.333% - 16px);
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        width: 30%;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 56px;
    }

    .process-step {
        width: calc(25% - 23px);
    }

    .service-card {
        width: calc(33.333% - 16px);
    }
}

@media (max-width: 767px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-light);
        gap: 16px;
    }

    .nav-links.active {
        display: flex;
    }
}
