/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

/* Header and Navigation */
.header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #7CB342;
}

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

.nav-menu a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #7CB342;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #E8F5E9 0%, #C5E1A5 100%);
}

.hero .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero h1 {
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
}

.hero-visual {
    flex: 1;
    min-width: 300px;
}

.hero-visual svg {
    width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #7CB342;
    color: #fff;
}

.btn-primary:hover {
    background-color: #689F38;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.3);
}

.btn-secondary {
    background-color: #fff;
    color: #7CB342;
    border: 2px solid #7CB342;
}

.btn-secondary:hover {
    background-color: #7CB342;
    color: #fff;
}

.btn-text {
    color: #7CB342;
    padding: 0.5rem 1rem;
}

.btn-text:hover {
    color: #689F38;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Sections */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2rem;
    color: #2E7D32;
    margin-bottom: 1rem;
    text-align: center;
}

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

/* Philosophy Section */
.philosophy {
    background-color: #F5F5F5;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.philosophy-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.icon-box svg {
    width: 100%;
    height: 100%;
}

.philosophy-item h3 {
    font-size: 1.25rem;
    color: #2E7D32;
    margin-bottom: 0.5rem;
}

.philosophy-item p {
    color: #666;
}

/* Featured Collection */
.featured-collection {
    background-color: #fff;
}

.featured-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.featured-text {
    flex: 1;
    min-width: 300px;
}

.label {
    display: inline-block;
    background-color: #7CB342;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.featured-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.featured-text p {
    color: #666;
    margin-bottom: 1rem;
}

.featured-visual {
    flex: 1;
    min-width: 300px;
}

.featured-visual svg {
    width: 100%;
    height: auto;
}

/* Stats Section */
.stats {
    background-color: #2E7D32;
    color: #fff;
}

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Benefits Section */
.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    background-color: #F5F5F5;
    padding: 2rem;
    border-radius: 12px;
}

.benefit-card h3 {
    color: #2E7D32;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
}

/* Testimonials */
.testimonials {
    background-color: #F5F5F5;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #7CB342;
}

/* Process Section */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background-color: #7CB342;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step h3 {
    color: #2E7D32;
    margin-bottom: 0.5rem;
}

.step p {
    color: #666;
}

/* Values Section */
.values {
    background-color: #F5F5F5;
}

.values-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.value-block {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #7CB342;
}

.value-block h3 {
    color: #2E7D32;
    margin-bottom: 1rem;
}

.value-block p {
    color: #666;
}

/* FAQ Section */
.faq {
    background-color: #fff;
}

.faq-list {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    border-bottom: 1px solid #E0E0E0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2E7D32;
    cursor: pointer;
}

.faq-icon {
    font-size: 1.5rem;
    color: #7CB342;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    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;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #7CB342 0%, #558B2F 100%);
    color: #fff;
}

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

.cta h2 {
    color: #fff;
    margin-bottom: 1rem;
}

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

/* Footer */
.footer {
    background-color: #2E2E2E;
    color: #fff;
    padding: 3rem 0 1rem;
}

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

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

.footer-col h4 {
    color: #7CB342;
    margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
    color: #ccc;
    font-size: 0.938rem;
    line-height: 1.8;
}

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

.footer-col a:hover {
    color: #7CB342;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
    font-size: 0.875rem;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #E8F5E9 0%, #C5E1A5 100%);
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Story Section */
.story {
    padding: 4rem 0;
}

.story-content p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: #666;
    line-height: 1.8;
    font-size: 1.063rem;
}

/* Mission Section */
.mission {
    background-color: #F5F5F5;
}

.mission-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.mission-block {
    flex: 1;
    min-width: 300px;
}

.mission-block h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.mission-block p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.mission-visual {
    flex: 1;
    min-width: 300px;
}

.mission-visual svg {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

/* Team Section */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
}

.member-avatar svg {
    width: 100%;
    height: 100%;
}

.team-member h3 {
    color: #2E7D32;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #7CB342;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #666;
    font-size: 0.938rem;
}

/* Commitment Section */
.commitment {
    background-color: #F5F5F5;
}

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

.intro-text {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.commitment-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.commitment-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
}

.commitment-item h3 {
    color: #2E7D32;
    margin-bottom: 1rem;
}

.commitment-item p {
    color: #666;
    margin-bottom: 1rem;
}

.commitment-item ul {
    list-style: disc;
    padding-left: 1.5rem;
    color: #666;
}

.commitment-item li {
    margin-bottom: 0.5rem;
}

/* Achievements / Timeline */
.timeline {
    max-width: 800px;
    margin: 2rem auto 0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0.875rem;
    top: 2.5rem;
    bottom: -3rem;
    width: 2px;
    background-color: #C5E1A5;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #7CB342;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.938rem;
}

.timeline-content {
    padding-top: 3rem;
}

.timeline-content h3 {
    color: #2E7D32;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
}

/* Partners Section */
.partners-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.partner-card {
    flex: 1;
    min-width: 280px;
    background-color: #F5F5F5;
    padding: 2rem;
    border-radius: 12px;
}

.partner-card h3 {
    color: #2E7D32;
    margin-bottom: 1rem;
}

.partner-card p {
    color: #666;
}

/* Future Section */
.future-content {
    max-width: 800px;
    margin: 0 auto;
}

.future-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.future-list {
    list-style: none;
    margin: 1.5rem 0;
}

.future-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #666;
}

.future-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #7CB342;
    font-weight: 700;
}

/* Services Page */
.services-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    color: #666;
    font-size: 1.063rem;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #fff;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #7CB342;
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.2);
    transform: translateY(-4px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    color: #2E7D32;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.375rem;
    font-weight: 700;
    color: #7CB342;
}

/* Benefits Comparison */
.service-benefits {
    background-color: #F5F5F5;
}

.benefits-comparison {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.comparison-item {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
}

.comparison-item h3 {
    color: #2E7D32;
    margin-bottom: 1rem;
}

.comparison-item p {
    color: #666;
}

/* Size Table */
.sizing {
    background-color: #fff;
}

.size-table {
    max-width: 700px;
    margin: 2rem auto 0;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    overflow: hidden;
}

.size-row {
    display: flex;
    border-bottom: 1px solid #E0E0E0;
}

.size-row:last-child {
    border-bottom: none;
}

.size-header {
    background-color: #7CB342;
    color: #fff;
    font-weight: 700;
}

.size-cell {
    flex: 1;
    padding: 1rem;
    text-align: center;
}

.size-row:not(.size-header):nth-child(even) {
    background-color: #F5F5F5;
}

.size-note {
    max-width: 700px;
    margin: 1.5rem auto 0;
    text-align: center;
    color: #666;
    font-style: italic;
}

/* Care Section */
.care {
    background-color: #F5F5F5;
}

.care-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.care-item {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
}

.care-item h3 {
    color: #2E7D32;
    margin-bottom: 1rem;
}

.care-item p {
    color: #666;
}

/* Contact Page */
.contact-info {
    padding: 4rem 0;
}

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

.contact-block {
    flex: 1;
    min-width: 300px;
}

.contact-block h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.contact-block p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-text h3 {
    color: #2E7D32;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #666;
    margin-bottom: 0.25rem;
}

.contact-note {
    font-size: 0.875rem;
    font-style: italic;
}

/* Directions Section */
.directions {
    background-color: #F5F5F5;
}

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

.direction-block {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
}

.direction-block h3 {
    color: #2E7D32;
    margin-bottom: 1rem;
}

.direction-block p {
    color: #666;
    margin-bottom: 1rem;
}

/* Office Info */
.office-content {
    max-width: 800px;
    margin: 0 auto;
}

.office-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.office-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    color: #666;
}

.office-list li {
    margin-bottom: 0.5rem;
}

.office-note {
    background-color: #E8F5E9;
    padding: 1rem;
    border-left: 4px solid #7CB342;
    border-radius: 4px;
    margin-top: 1.5rem;
    font-style: italic;
}

/* Company Values */
.company-values {
    background-color: #F5F5F5;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-item h3 {
    color: #2E7D32;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: #666;
}

/* Thank You Page */
.thank-you-hero {
    background: linear-gradient(135deg, #E8F5E9 0%, #C5E1A5 100%);
    padding: 5rem 0;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.thank-you-icon svg {
    width: 100%;
    height: 100%;
}

.thank-you-content h1 {
    color: #2E7D32;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.7;
}

/* Next Steps */
.next-steps {
    padding: 4rem 0;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background-color: #F5F5F5;
    border-radius: 12px;
}

.step-item .step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
}

.step-item h3 {
    color: #2E7D32;
    margin-bottom: 1rem;
}

.step-item p {
    color: #666;
}

/* Explore Section */
.explore {
    background-color: #F5F5F5;
}

.explore-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.explore-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.explore-card h3 {
    color: #2E7D32;
    margin-bottom: 1rem;
}

.explore-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Info Section */
.info-section {
    padding: 4rem 0;
}

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

.info-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.info-content p {
    color: #666;
    margin-bottom: 1rem;
}

.info-list {
    list-style: none;
    margin: 1.5rem 0;
}

.info-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: #666;
}

.info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #7CB342;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
}

.legal-intro {
    text-align: center;
    color: #999;
    font-size: 0.938rem;
    margin-bottom: 2rem;
}

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

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    text-align: left;
    color: #2E7D32;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.legal-section h3 {
    color: #558B2F;
    margin: 1.5rem 0 1rem;
    font-size: 1.25rem;
}

.legal-section h4 {
    color: #7CB342;
    margin: 1rem 0 0.5rem;
    font-size: 1.063rem;
}

.legal-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 1rem 0;
    color: #666;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-section a {
    color: #7CB342;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #558B2F;
}

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

.cookie-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #E0E0E0;
}

.cookie-table td:first-child {
    width: 30%;
    color: #888;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2E2E2E;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
}

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

.cookie-modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    color: #2E7D32;
    margin-bottom: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

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

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-option p {
    margin: 0.5rem 0 0 2rem;
    color: #666;
    font-size: 0.938rem;
}

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

/* Mobile Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background-color: #fff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        gap: 0;
    }

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

    .nav-menu li {
        margin-bottom: 1rem;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1.125rem;
    }

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

    section h2 {
        font-size: 1.75rem;
    }

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

    .stat-number {
        font-size: 2rem;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-buttons button {
        flex: 1;
    }

    .timeline-item {
        padding-left: 2rem;
    }

    .timeline-item::before {
        left: 0.5rem;
    }

    .timeline-year {
        position: relative;
        left: auto;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .timeline-content {
        padding-top: 0;
    }

    .size-table {
        font-size: 0.875rem;
    }

    .size-cell {
        padding: 0.75rem 0.5rem;
    }
}

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

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

    section h2 {
        font-size: 1.5rem;
    }

    .btn {
        width: 100%;
        display: block;
    }

    .step {
        flex-direction: column;
    }

    .size-row {
        flex-direction: column;
    }

    .size-cell {
        text-align: left;
        border-bottom: 1px solid #E0E0E0;
    }

    .size-header .size-cell {
        background-color: #558B2F;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .menu-toggle {
        display: none;
    }
}