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

:root {
    --primary-color: #4a7c59;
    --secondary-color: #6b9f7a;
    --accent-color: #8fb89f;
    --text-dark: #2d3a2f;
    --text-light: #5a6b5f;
    --bg-light: #f5f7f6;
    --bg-white: #ffffff;
    --border-color: #d4e0d8;
    --border-radius: 24px;
    --spacing-unit: 32px;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.header {
    background-color: var(--bg-white);
    border-bottom: 2px solid var(--border-color);
    padding: 28px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(74, 124, 89, 0.08);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.logo {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: var(--transition);
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 1;
    min-width: 0;
}

.logo:hover,
.logo:focus {
    color: var(--secondary-color);
    transform: translateY(-1px);
}

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

.nav-toggle span {
    width: 26px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 44px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 16px;
    letter-spacing: 0.2px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

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

.nav-menu a:hover::after,
.nav-menu a:focus::after {
    width: 100%;
}

.hero {
    padding: 120px 0;
    background: linear-gradient(135deg, #f5f7f6 0%, #e8f0eb 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(107, 159, 122, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.8px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 44px;
    line-height: 1.8;
    font-weight: 400;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
    box-shadow: 0 12px 40px rgba(74, 124, 89, 0.2);
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    font-size: 16px;
    letter-spacing: 0.3px;
    background-color: transparent;
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(74, 124, 89, 0.4);
}

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

.btn-secondary:hover,
.btn-secondary:focus {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: var(--bg-light);
}

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

.btn-outline:hover,
.btn-outline:focus {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 64px;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.6px;
}

.features {
    padding: 120px 0;
    background-color: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    width: 100%;
    box-sizing: border-box;
}

.feature-card {
    text-align: left;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid transparent;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.feature-card:hover {
    border-color: var(--border-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(74, 124, 89, 0.12);
}

.feature-icon {
    color: var(--primary-color);
    margin-bottom: 28px;
    display: flex;
    justify-content: flex-start;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.2px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.9;
    font-weight: 400;
}

.services {
    padding: 120px 0;
    background: linear-gradient(135deg, #f5f7f6 0%, #e8f0eb 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
    width: 100%;
    box-sizing: border-box;
}

.service-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(74, 124, 89, 0.18);
}

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

.service-card-content {
    padding: 36px;
}

.service-card-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.service-card-content p {
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.9;
    font-weight: 400;
}

.process {
    padding: 120px 0;
    background-color: var(--bg-white);
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.process-text h2 {
    font-size: 42px;
    margin-bottom: 32px;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.6px;
}

.process-text p {
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.9;
    font-size: 18px;
    font-weight: 400;
}

.process-list {
    list-style: none;
    margin-bottom: 36px;
}

.process-list li {
    padding: 20px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-light);
    border-bottom: 2px solid var(--border-color);
    font-weight: 400;
}

.process-list li:last-child {
    border-bottom: none;
}

.process-list li::before {
    content: '🌿';
    position: absolute;
    left: 0;
    top: 20px;
    font-size: 20px;
}

.process-list li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.process-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
    box-shadow: 0 12px 40px rgba(74, 124, 89, 0.15);
}

.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, #f5f7f6 0%, #e8f0eb 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 44px;
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(74, 124, 89, 0.08);
}

.testimonial-text {
    font-style: normal;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.9;
    font-size: 17px;
    font-weight: 400;
}

.testimonial-author {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.cta {
    padding: 120px 0;
    background-color: var(--bg-white);
}

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

.cta-content h2 {
    font-size: 44px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.6px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 44px;
    color: var(--text-light);
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-header {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7f6 0%, #e8f0eb 100%);
    text-align: center;
    border-bottom: 2px solid var(--border-color);
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.6px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 400;
}

.services-section {
    padding: 100px 0;
}

.services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    width: 100%;
    box-sizing: border-box;
}

.service-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(74, 124, 89, 0.18);
}

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

.service-card-content {
    padding: 36px;
}

.service-card-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.service-card-content p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.9;
    font-weight: 400;
}

.service-details {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.service-type,
.service-duration {
    font-size: 14px;
    color: var(--text-light);
    padding: 8px 16px;
    background-color: var(--bg-light);
    border-radius: 16px;
    font-weight: 400;
}

.info-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7f6 0%, #e8f0eb 100%);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
}

.info-card {
    background-color: var(--bg-white);
    padding: 44px;
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(74, 124, 89, 0.08);
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.9;
    font-weight: 400;
}

.guide-section {
    padding: 100px 0;
}

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

.guide-article {
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 2px solid var(--border-color);
}

.guide-article:last-child {
    border-bottom: none;
}

.guide-article h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.4px;
}

.guide-article p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.9;
    font-size: 17px;
    font-weight: 400;
}

.guide-article ul {
    margin-left: 28px;
    margin-top: 20px;
}

.guide-article li {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.9;
    font-weight: 400;
}

.guide-article strong {
    color: var(--text-dark);
    font-weight: 600;
}

.about-section {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 32px;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.6px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.9;
    font-size: 18px;
    font-weight: 400;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
    box-shadow: 0 12px 40px rgba(74, 124, 89, 0.15);
}

.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7f6 0%, #e8f0eb 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
}

.value-card {
    background-color: var(--bg-white);
    padding: 44px;
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
    text-align: left;
    box-shadow: 0 4px 16px rgba(74, 124, 89, 0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.9;
    font-weight: 400;
}

.team-section {
    padding: 100px 0;
}

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

.contact-section {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 44px;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.4px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.9;
    font-weight: 400;
}

.contact-form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 44px;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.4px;
}

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

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

.form-group label {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.2px;
}

.form-group input,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
    font-size: 15px;
}

.thankyou-section {
    padding: 140px 0;
    text-align: center;
}

.thankyou-content h1 {
    font-size: 48px;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.6px;
}

.thankyou-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 44px;
    font-weight: 400;
}

.policy-section {
    padding: 100px 0;
}

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

.policy-content article {
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 2px solid var(--border-color);
}

.policy-content article:last-child {
    border-bottom: none;
}

.policy-content h2 {
    font-size: 32px;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.4px;
}

.policy-content h3 {
    font-size: 24px;
    margin-top: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

.policy-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.9;
    font-size: 17px;
    font-weight: 400;
}

.policy-content ul,
.policy-content ol {
    margin-left: 28px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.policy-content li {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.9;
    font-weight: 400;
}

.footer {
    background: linear-gradient(135deg, #2d3a2f 0%, #1a251c 100%);
    color: var(--bg-white);
    padding: 100px 0 40px;
    margin-top: 120px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 56px;
    margin-bottom: 56px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--bg-white);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--bg-white);
    font-weight: 600;
    letter-spacing: 0.2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    margin-bottom: 16px;
    font-weight: 400;
}

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

.footer-section ul li {
    margin-bottom: 16px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 400;
}

.footer-section a:hover,
.footer-section a:focus {
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 48px;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
}

@media (max-width: 768px) {
    .header {
        padding: 20px 0;
    }

    .header-content {
        gap: 12px;
    }

    .logo {
        font-size: 18px;
        max-width: calc(100% - 60px);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 48px 24px;
        transition: var(--transition);
        border-right: 2px solid var(--border-color);
        box-shadow: 4px 0 16px rgba(74, 124, 89, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 56px;
    }

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

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

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .services-section .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        width: 100%;
        max-width: 100%;
    }
    
    .service-card img {
        max-width: 100%;
        height: auto;
        min-height: 200px;
    }

    .feature-card {
        padding: 32px;
    }

    .service-card-content {
        padding: 28px;
    }

    .process-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta .btn {
        width: 100%;
        text-align: center;
    }

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

    :root {
        --spacing-unit: 24px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 16px 0;
    }

    .logo {
        font-size: 16px;
        max-width: calc(100% - 50px);
    }

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

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

    .features-grid {
        gap: 24px;
    }

    .services-grid {
        gap: 24px;
    }
    
    .service-card img {
        min-height: 180px;
    }
    
    .service-card-content {
        padding: 20px;
    }
    
    .service-card-content h3 {
        font-size: 22px;
    }

    .feature-card {
        padding: 24px;
    }

    .service-card-content {
        padding: 24px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .btn {
        padding: 16px 32px;
        font-size: 15px;
    }
}

@media (max-width: 320px) {
    .services-section .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        min-width: 0;
        width: 100%;
    }
    
    .service-card-content {
        padding: 16px;
    }
    
    .service-card-content h3 {
        font-size: 20px;
    }
    
    .container {
        padding: 0 16px;
    }
}

