/* Base Reset and Variables */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #6B8E23;
    --color-primary-dark: #556B2F;
    --color-secondary: #8B5A2B;
    --color-secondary-light: #A0522D;
    --color-accent: #DAA520;
    --color-warm: #DEB887;
    --color-cream: #F5F5DC;
    --color-light: #FAF8F5;
    --color-dark: #2F2F2F;
    --color-text: #3D3D3D;
    --color-text-light: #666666;
    --color-border: #E0DCD5;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --max-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-light);
}

img, svg {
    max-width: 100%;
    height: auto;
}

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

a:hover {
    color: var(--color-primary-dark);
}

ul, ol {
    list-style: none;
}

address {
    font-style: normal;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-dark);
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 2rem;
    font-weight: 700;
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-sm);
}

p:last-child {
    margin-bottom: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

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

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

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

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

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

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

.btn-link {
    background: none;
    color: var(--color-text-light);
    padding: 0.5rem;
}

.btn-link:hover {
    color: var(--color-primary);
}

/* Header & Navigation */
.site-header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    padding: var(--spacing-sm) 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
}

.logo:hover {
    color: var(--color-primary);
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-menu a {
    color: var(--color-text);
    font-weight: 500;
    padding: var(--spacing-xs) 0;
    position: relative;
}

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

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-dark);
    position: relative;
    transition: background-color var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--color-dark);
    transition: transform var(--transition);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light) 100%);
    padding: var(--spacing-xxl) 0;
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 2.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-dark);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-illustration {
    max-width: 400px;
    width: 100%;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light) 100%);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: var(--spacing-sm);
}

.page-hero p {
    color: var(--color-text-light);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

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

/* Section Labels */
.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-xs);
}

.section-intro {
    color: var(--color-text-light);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    text-align: center;
}

/* Philosophy Section */
.philosophy-section {
    padding: var(--spacing-xxl) 0;
    background-color: white;
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.philosophy-content h2 {
    margin-bottom: var(--spacing-md);
}

.philosophy-content p {
    color: var(--color-text-light);
}

.philosophy-values {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.value-card {
    background-color: var(--color-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
}

.value-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--spacing-sm);
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.value-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Stats Section */
.stats-section {
    background-color: var(--color-secondary);
    padding: var(--spacing-xl) 0;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-lg);
}

.stat-item {
    text-align: center;
    flex: 1 1 140px;
    max-width: 180px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-warm);
}

/* Featured Categories */
.featured-categories {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-light);
}

.featured-categories h2 {
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.categories-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.category-card {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

.category-card:hover {
    box-shadow: var(--shadow-md);
}

.category-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--spacing-sm);
}

.category-card h3 {
    margin-bottom: var(--spacing-xs);
}

.category-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-sm);
}

.age-tag {
    display: inline-block;
    background-color: var(--color-cream);
    color: var(--color-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

/* Process Section */
.process-section {
    padding: var(--spacing-xxl) 0;
    background-color: white;
}

.process-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.process-step {
    position: relative;
    padding-left: 70px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step h3 {
    margin-bottom: var(--spacing-xs);
}

.process-step p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-cream);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.testimonial-card {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.testimonial-card p {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.testimonial-card cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--color-secondary);
}

/* Knowledge Section */
.knowledge-section {
    padding: var(--spacing-xxl) 0;
    background-color: white;
}

.knowledge-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.knowledge-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.knowledge-item {
    border-left: 4px solid var(--color-primary);
    padding-left: var(--spacing-md);
}

.knowledge-item h3 {
    color: var(--color-secondary);
    margin-bottom: var(--spacing-xs);
}

.knowledge-item p {
    color: var(--color-text-light);
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-light);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.faq-item {
    background-color: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    padding: var(--spacing-md);
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: transform var(--transition);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    background-color: var(--color-light);
}

.faq-answer {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--color-text-light);
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

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

.cta-content h2 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.cta-content p {
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Story Section */
.story-section {
    padding: var(--spacing-xxl) 0;
    background-color: white;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.story-text h2 {
    margin-bottom: var(--spacing-md);
}

.story-text p {
    color: var(--color-text-light);
}

.story-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.timeline-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.timeline-year {
    flex-shrink: 0;
    width: 60px;
    font-weight: 700;
    color: var(--color-primary);
}

.timeline-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Team Section */
.team-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-light);
}

.team-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
}

.team-card {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    flex: 1 1 250px;
    max-width: 280px;
    box-shadow: var(--shadow-sm);
}

.team-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
}

.team-card h3 {
    margin-bottom: var(--spacing-xs);
}

.team-role {
    display: block;
    color: var(--color-primary);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.team-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* Values Detailed */
.values-detailed {
    padding: var(--spacing-xxl) 0;
    background-color: white;
}

.values-detailed h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.value-detailed-card {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

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

.value-text h3 {
    margin-bottom: var(--spacing-xs);
}

.value-text p {
    color: var(--color-text-light);
}

/* Partners Section */
.partners-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-cream);
}

.partners-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
}

.partner-card {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    flex: 1 1 220px;
    max-width: 260px;
    box-shadow: var(--shadow-sm);
}

.partner-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--spacing-sm);
}

.partner-card h3 {
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
}

.partner-card p {
    color: var(--color-text-light);
    font-size: 0.85rem;
}

/* Certifications */
.certifications-section {
    padding: var(--spacing-xxl) 0;
    background-color: white;
}

.certifications-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.cert-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    justify-content: center;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    flex: 0 0 120px;
}

.cert-icon {
    width: 50px;
    height: 50px;
}

.cert-item span {
    font-size: 0.8rem;
    color: var(--color-text-light);
    text-align: center;
}

/* Products Section */
.products-section {
    padding: var(--spacing-xxl) 0;
    background-color: white;
}

.category-block {
    margin-bottom: var(--spacing-xxl);
}

.category-block:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--color-border);
}

.category-header .category-icon {
    flex-shrink: 0;
}

.category-header h2 {
    margin-bottom: var(--spacing-xs);
}

.category-header p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.product-card {
    background-color: var(--color-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    flex: 1 1 250px;
    max-width: 100%;
    transition: box-shadow var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-md);
}

.product-icon {
    width: 50px;
    height: 50px;
    margin-bottom: var(--spacing-sm);
}

.product-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.product-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.price {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Benefits Section */
.benefits-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-cream);
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
}

.benefit-card {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    flex: 1 1 220px;
    max-width: 280px;
    box-shadow: var(--shadow-sm);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--spacing-sm);
}

.benefit-card h3 {
    margin-bottom: var(--spacing-xs);
}

.benefit-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* Comparison Section */
.comparison-section {
    padding: var(--spacing-xxl) 0;
    background-color: white;
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

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

.comparison-row {
    display: flex;
    border-bottom: 1px solid var(--color-border);
}

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

.comparison-cell {
    flex: 1;
    padding: var(--spacing-md);
    font-size: 0.95rem;
}

.comparison-cell:first-child {
    flex: 0 0 30%;
    font-weight: 600;
    background-color: var(--color-light);
}

.comparison-cell.highlight {
    background-color: rgba(107, 142, 35, 0.1);
    color: var(--color-primary-dark);
}

.comparison-header {
    background-color: var(--color-secondary);
    color: white;
    font-weight: 600;
}

.comparison-header .comparison-cell {
    background-color: transparent;
    color: white;
}

.comparison-header .comparison-cell.highlight {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Contact Page */
.contact-main {
    padding: var(--spacing-xxl) 0;
    background-color: white;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.info-block {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.info-icon {
    width: 40px;
    height: 40px;
    margin-bottom: var(--spacing-xs);
}

.info-block h2 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

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

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: var(--spacing-xs) 0;
}

.hours-table td:first-child {
    font-weight: 500;
}

.hours-table td:last-child {
    text-align: right;
    color: var(--color-text-light);
}

.company-description h2,
.directions h2 {
    margin-bottom: var(--spacing-md);
}

.company-description p,
.directions p {
    color: var(--color-text-light);
}

.direction-block {
    margin-bottom: var(--spacing-md);
}

.direction-block:last-child {
    margin-bottom: 0;
}

.direction-block h3 {
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
}

/* Company Info Section */
.company-info-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-light);
}

.company-info-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.company-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.company-info-card {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    flex: 1 1 280px;
    box-shadow: var(--shadow-sm);
}

.company-info-card h3 {
    margin-bottom: var(--spacing-md);
    color: var(--color-secondary);
}

.company-info-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xs);
}

/* Map Placeholder */
.map-placeholder {
    padding: var(--spacing-xl) 0;
    background-color: white;
}

.map-visual {
    background-color: var(--color-cream);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
}

.map-illustration {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 0 auto;
}

/* Thank You Page */
.thank-you-section {
    padding: var(--spacing-xxl) 0;
    background-color: white;
}

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

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-lg);
}

.thank-you-content h1 {
    margin-bottom: var(--spacing-md);
}

.thank-you-message {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xl);
}

.thank-you-info {
    background-color: var(--color-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-xl);
    text-align: left;
}

.thank-you-info h2 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.next-steps .step {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

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

.next-steps .step p {
    color: var(--color-text-light);
}

.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
}

/* Meanwhile Section */
.meanwhile-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-light);
}

.meanwhile-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.meanwhile-section > .container > p {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xl);
}

.meanwhile-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
}

.meanwhile-card {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    flex: 1 1 200px;
    max-width: 250px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    color: var(--color-text);
}

.meanwhile-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    color: var(--color-text);
}

.meanwhile-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--spacing-sm);
}

.meanwhile-card h3 {
    margin-bottom: var(--spacing-xs);
}

.meanwhile-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* Legal Pages */
.legal-content {
    padding: var(--spacing-xxl) 0;
    background-color: white;
}

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

.legal-section {
    margin-bottom: var(--spacing-xl);
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid var(--color-border);
}

.legal-section h3 {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.legal-section p {
    color: var(--color-text-light);
}

.legal-section ul {
    margin: var(--spacing-sm) 0;
    padding-left: var(--spacing-md);
}

.legal-section li {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xs);
    position: relative;
    padding-left: var(--spacing-md);
}

.legal-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.legal-section address {
    background-color: var(--color-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin: var(--spacing-md) 0;
}

.legal-section address p {
    color: var(--color-text);
}

/* Rights Grid (GDPR) */
.rights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.right-card {
    background-color: var(--color-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    flex: 1 1 280px;
}

.right-card h3 {
    margin-bottom: var(--spacing-xs);
}

.right-article {
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.right-card p:last-child {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Cookie Tables */
.cookie-category {
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md);
    background-color: var(--color-light);
    border-radius: var(--radius-md);
}

.cookie-category h3 {
    margin-bottom: var(--spacing-sm);
}

.cookie-category > p {
    margin-bottom: var(--spacing-md);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.cookie-table th,
.cookie-table td {
    padding: var(--spacing-sm);
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.cookie-table th {
    background-color: var(--color-secondary);
    color: white;
    font-weight: 600;
}

.cookie-table td {
    background-color: white;
}

/* Footer */
.site-footer {
    background-color: var(--color-dark);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-brand {
    flex: 1 1 100%;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.footer-logo:hover {
    color: var(--color-warm);
}

.footer-logo .logo-icon {
    width: 36px;
    height: 36px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-nav,
.footer-legal,
.footer-contact {
    flex: 1 1 140px;
}

.footer-grid h4 {
    color: var(--color-warm);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
}

.footer-grid ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-grid a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color var(--transition);
}

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

.footer-contact address p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: var(--spacing-md);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform var(--transition);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
    text-align: center;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
}

.cookie-modal.active {
    display: block;
}

.cookie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.cookie-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: calc(100% - 2rem);
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--color-border);
}

.cookie-modal-header h3 {
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-light);
    padding: var(--spacing-xs);
    line-height: 1;
}

.cookie-modal-close:hover {
    color: var(--color-dark);
}

.cookie-modal-body {
    padding: var(--spacing-md);
}

.cookie-option {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--color-border);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xs);
}

.cookie-option-header label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    cursor: pointer;
    font-weight: 500;
}

.cookie-option-header input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
}

.cookie-required {
    font-size: 0.75rem;
    color: var(--color-text-light);
    background-color: var(--color-light);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
}

.cookie-option p {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.cookie-modal-footer {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    border-top: 1px solid var(--color-border);
    justify-content: flex-end;
}

/* Media Queries */
@media (min-width: 640px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

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

    .category-card {
        flex: 1 1 calc(50% - var(--spacing-md));
    }

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

    .value-card {
        flex: 1 1 calc(33% - var(--spacing-md));
    }

    .cookie-content {
        flex-direction: row;
        text-align: left;
    }

    .cookie-content p {
        flex: 1;
    }
}

@media (min-width: 768px) {
    .hero .container {
        flex-direction: row;
        align-items: center;
    }

    .hero-content {
        flex: 1;
    }

    .hero-visual {
        flex: 1;
    }

    .philosophy-grid {
        flex-direction: row;
        align-items: flex-start;
    }

    .philosophy-content {
        flex: 1;
    }

    .philosophy-values {
        flex: 1;
    }

    .story-content {
        flex-direction: row;
    }

    .story-text {
        flex: 2;
    }

    .story-timeline {
        flex: 1;
    }

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

    .contact-info {
        flex: 1;
    }

    .contact-details {
        flex: 1.5;
    }

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

@media (min-width: 1024px) {
    .categories-grid {
        flex-wrap: nowrap;
    }

    .category-card {
        flex: 1;
    }

    .testimonials-grid {
        flex-direction: row;
    }

    .testimonial-card {
        flex: 1;
    }

    .product-card {
        max-width: calc(50% - var(--spacing-md));
    }
}

@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        padding: 80px var(--spacing-lg) var(--spacing-lg);
        box-shadow: var(--shadow-lg);
        transition: right var(--transition);
        gap: 0;
    }

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

    .nav-menu li {
        border-bottom: 1px solid var(--color-border);
    }

    .nav-menu a {
        display: block;
        padding: var(--spacing-md) 0;
    }

    .nav-menu a::after {
        display: none;
    }

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

    .comparison-cell {
        flex: none;
        width: 100%;
    }

    .comparison-cell:first-child {
        flex: none;
    }

    .comparison-header {
        display: none;
    }

    .comparison-row:not(.comparison-header) .comparison-cell:first-child {
        font-weight: 700;
        background-color: var(--color-secondary);
        color: white;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
summary:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    z-index: 10001;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 0;
}

/* Print styles */
@media print {
    .site-header,
    .site-footer,
    .cookie-banner,
    .cookie-modal,
    .cta-section {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    a {
        color: inherit;
        text-decoration: underline;
    }
}
