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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #95a5a6;
    --accent-color: #c69c6d;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #fff;
    --bg-light: #f8f9fa;
    --bg-dark: #2c3e50;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

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

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

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

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

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

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

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

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-color);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 1rem;
    }

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

    .menu-toggle {
        display: flex;
    }

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

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

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

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

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

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-visual img {
    width: 100%;
    max-width: 500px;
    margin: 2rem auto 0;
}

/* Page Hero */
.page-hero {
    padding: 4rem 0 2rem;
    text-align: center;
    background-color: var(--bg-light);
}

.page-hero h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #b8935f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

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

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

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

section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Philosophy Grid */
.philosophy {
    background-color: var(--bg-light);
}

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

.philosophy-item {
    flex: 1 1 300px;
    text-align: center;
    padding: 2rem;
}

.philosophy-item img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.philosophy-item h3 {
    margin-bottom: 1rem;
}

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

/* Featured Collection */
.featured-collection {
    padding: 4rem 0;
}

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

.featured-text {
    flex: 1 1 400px;
}

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

.featured-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.featured-visual {
    flex: 1 1 400px;
}

.featured-visual img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* Values List */
.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    flex: 1 1 280px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

/* Testimonials */
.testimonials {
    background-color: var(--bg-light);
}

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

.testimonial {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: #fff;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.testimonial p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.testimonial footer {
    font-weight: 600;
    color: var(--primary-color);
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    flex: 1 1 250px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.step h3 {
    margin-bottom: 1rem;
}

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

/* Statistics */
.statistics {
    background-color: var(--primary-color);
    color: #fff;
}

.statistics h2 {
    color: #fff;
}

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

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

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

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

/* Insights */
.insights-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.insight {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.insight h3 {
    margin-bottom: 1rem;
}

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

/* FAQ */
.faq {
    background-color: var(--bg-light);
}

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

.faq-item {
    background-color: #fff;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

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

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    transition: var(--transition);
}

.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;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

/* CTA Sections */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: #fff;
    text-align: center;
    padding: 5rem 0;
}

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

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

.cta-secondary {
    background-color: var(--bg-light);
    text-align: center;
    padding: 4rem 0;
}

.cta-secondary h2 {
    margin-bottom: 1rem;
}

.cta-secondary p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2rem;
}

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

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

.story-text {
    flex: 1 1 400px;
}

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

.story-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.story-visual {
    flex: 1 1 400px;
}

.story-visual img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* Mission */
.mission {
    background-color: var(--bg-light);
}

.mission-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    color: var(--text-light);
}

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

.pillar {
    flex: 1 1 300px;
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

.pillar img {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
}

.pillar h3 {
    margin-bottom: 1rem;
}

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

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

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

.member-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--bg-light);
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

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

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

/* Values Detail */
.values-detail {
    background-color: var(--bg-light);
}

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

.value-detail {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

.value-detail h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.value-detail p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Milestones */
.timeline {
    max-width: 900px;
    margin: 2rem auto;
    position: relative;
}

.milestone {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.milestone-year {
    flex-shrink: 0;
    width: 100px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.milestone-content {
    flex: 1;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.milestone-content h3 {
    margin-bottom: 0.5rem;
}

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

/* Approach */
.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.approach-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.approach-item {
    flex: 1 1 400px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.approach-item h3 {
    margin-bottom: 1rem;
}

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

/* Commitment */
.sustainability-commitment {
    background-color: var(--bg-light);
}

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

.commitment-content > p {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.commitment-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.commitment-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

.commitment-item img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

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

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

/* Services */
.collections-intro {
    padding: 2rem 0;
}

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

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

.service-card {
    flex: 1 1 350px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

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

.service-card h2 {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 1rem;
}

.service-card > p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    color: var(--text-light);
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

/* Benefits Grid */
.service-benefits {
    background-color: var(--bg-light);
}

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

.benefit {
    flex: 1 1 280px;
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

.benefit img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.benefit h3 {
    margin-bottom: 1rem;
}

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

/* Process Timeline */
.process-detail {
    padding: 4rem 0;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

.step-visual {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
}

.step-visual img {
    width: 100%;
    height: 100%;
}

.step-content h3 {
    margin-bottom: 1rem;
}

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

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

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

.contact-info {
    flex: 1 1 350px;
}

.contact-details {
    flex: 1 1 500px;
}

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

.contact-block h3 {
    margin-bottom: 0.5rem;
}

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

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

.contact-details h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* About Location */
.about-location {
    background-color: var(--bg-light);
}

.about-location p {
    max-width: 800px;
    margin: 0 auto 1rem;
    color: var(--text-light);
}

/* Contact Services */
.contact-services {
    padding: 4rem 0;
}

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

.service-offer {
    flex: 1 1 280px;
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.service-offer img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

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

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

/* Company Info */
.company-info {
    background-color: var(--bg-light);
}

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

.info-block {
    flex: 1 1 280px;
}

.info-block h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

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

/* Thank You */
.thank-you-hero {
    padding: 5rem 0;
    text-align: center;
}

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

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

.thank-you-hero h1 {
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.25rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.thank-you-hero p {
    color: var(--text-light);
}

/* Next Steps */
.next-steps {
    background-color: var(--bg-light);
}

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

.step-card {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
}

.step-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

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

.step-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Opening Hours */
.opening-hours {
    padding: 4rem 0;
}

.hours-display {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.hours-display p {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.hours-note {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Legal Pages */
.legal-hero {
    background-color: var(--bg-light);
    padding: 3rem 0 2rem;
    text-align: center;
}

.legal-hero h1 {
    margin-bottom: 0.5rem;
}

.legal-date {
    color: var(--text-light);
    font-style: italic;
}

.legal-content {
    padding: 4rem 0;
}

.legal-section {
    max-width: 900px;
    margin: 0 auto 3rem;
}

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

.legal-section h3 {
    font-size: 1.25rem;
    text-align: left;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-section ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.legal-section a {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Cookie Table */
.cookie-table {
    margin: 2rem 0;
}

.cookie-table h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    background-color: #fff;
}

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

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--text-light);
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: #fff;
    padding: 3rem 0 1rem;
}

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

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

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

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

.footer-col a:hover {
    color: var(--accent-color);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    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;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
    font-size: 0.95rem;
}

.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: 1rem;
}

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

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

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

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

.cookie-option label {
    display: flex;
    gap: 1rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 0.25rem;
}

.cookie-option strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

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

    section h2 {
        font-size: 1.75rem;
    }

    .featured-content,
    .story-content {
        flex-direction: column;
    }

    .milestone {
        flex-direction: column;
        gap: 1rem;
    }

    .milestone-year {
        width: auto;
    }

    .process-step {
        flex-direction: column;
    }

    .step-visual {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

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

    .cookie-modal-buttons .btn {
        width: 100%;
    }
}

@media (min-width: 769px) {
    .hero .container {
        display: flex;
        align-items: center;
        gap: 3rem;
    }

    .hero-content {
        flex: 1;
    }

    .hero-visual {
        flex: 1;
    }

    .hero-visual img {
        margin: 0;
    }
}

/* Accessibility */
:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

button:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

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