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

:root {
    --color-primary: #2C5F2D;
    --color-secondary: #97BC62;
    --color-accent: #F4F1E8;
    --color-text: #2A2A2A;
    --color-text-light: #666666;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F9F9F9;
    --color-border: #E0E0E0;
    --max-width: 1200px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

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

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

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

.header {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.nav a {
    font-weight: 500;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--color-primary);
    transition: all 0.3s ease;
    display: block;
}

.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a3d1b 100%);
    color: white;
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.hero-text {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.hero-small {
    padding: var(--spacing-lg) 0;
}

.hero-small h1 {
    font-size: 2.5rem;
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-alt {
    background: var(--color-bg-alt);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-size: 2.25rem;
}

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

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

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.feature-card {
    flex: 1 1 300px;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.stat-item {
    text-align: center;
    flex: 1 1 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.industries {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.industry-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background: white;
    border-left: 4px solid var(--color-secondary);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background: white;
    border-radius: 8px;
}

.process-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.quote-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--color-accent);
    border-left: 4px solid var(--color-primary);
}

.quote-section blockquote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
}

.quote-section footer {
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: var(--color-primary);
}

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

.faq-item {
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: left;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--color-secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.values {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background: white;
    border-radius: 8px;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: #1a3d1b;
    color: white;
}

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

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

.section-cta {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #7a9a4d 100%);
    color: white;
}

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

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

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

.footer {
    background: var(--color-primary);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1 1 250px;
}

.footer h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    color: rgba(255,255,255,0.8);
}

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

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

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

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

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

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

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

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    padding: 1rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-content h2 {
    margin-bottom: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--color-bg-alt);
    border-radius: 4px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    cursor: pointer;
}

.cookie-option p {
    margin: 0.5rem 0 0 2rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.approach-items {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.approach-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background: white;
    border-radius: 8px;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.team-role {
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    flex-shrink: 0;
    width: 80px;
}

.timeline-content {
    flex: 1;
}

.principles {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.principle-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background: white;
    border-radius: 8px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    flex: 1;
}

.service-price {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid var(--color-border);
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.125rem;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    padding: 2rem;
    background: white;
    border-radius: 8px;
}

.process-overview {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background: white;
    border-radius: 8px;
    text-align: center;
}

.process-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.comparison-section {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.comparison-col {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background: white;
    border-radius: 8px;
}

.comparison-list {
    list-style: none;
    margin: 0;
}

.comparison-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.comparison-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 700;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info, .contact-details {
    flex: 1 1 calc(50% - 1.5rem);
}

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

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-style: italic;
}

.directions {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.direction-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    padding: 2rem;
    background: white;
    border-radius: 8px;
}

.company-info {
    max-width: 800px;
    margin: 0 auto;
}

.company-details {
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

.company-details p {
    margin-bottom: 0.75rem;
}

.thank-you-content {
    text-align: center;
}

.thank-you-icon {
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
}

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

.quick-link-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    padding: 2rem;
    background: white;
    border-radius: 8px;
    text-align: center;
}

.legal-content {
    background: var(--color-bg);
}

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

.legal-text h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-text h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-text ul, .legal-text ol {
    margin-bottom: 1.5rem;
}

.legal-update {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    font-style: italic;
    color: var(--color-text-light);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table tr {
    border-bottom: 1px solid var(--color-border);
}

.cookie-table td {
    padding: 1rem;
    vertical-align: top;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1.125rem;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav.active {
        max-height: 300px;
    }

    .nav a {
        padding: 1rem;
        border-bottom: 1px solid var(--color-border);
    }

    .menu-toggle {
        display: flex;
    }

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

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

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

    .feature-card,
    .industry-item,
    .process-step,
    .value-item,
    .approach-item,
    .team-member,
    .principle-item,
    .service-card,
    .benefit-item,
    .process-item,
    .comparison-col,
    .contact-info,
    .contact-details,
    .direction-item,
    .quick-link-card {
        flex: 1 1 100%;
    }

    .stats {
        gap: 2rem;
    }

    .stat-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .timeline-year {
        width: auto;
    }

    .section {
        padding: var(--spacing-lg) 0;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-modal-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .stat-item {
        flex: 1 1 100%;
    }

    .btn {
        width: 100%;
    }

    .service-card,
    .benefit-item {
        flex: 1 1 100%;
    }
}
