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

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

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

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

a {
    color: #2c5282;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a365d;
}

ul {
    list-style: none;
}

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

/* Container */
.container {
    width: 100%;
    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: #1a202c;
}

.logo:hover {
    color: #2d3748;
}

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

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2c5282;
}

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

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

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

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

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

    .nav-link {
        font-size: 1.1rem;
    }
}

/* Hero Sections */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 6rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

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

.lead {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.legal-date {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

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

.btn-primary {
    background-color: #667eea;
    color: #fff;
}

.btn-primary:hover {
    background-color: #5568d3;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background-color: #e2e8f0;
    color: #2d3748;
}

.btn-secondary:hover {
    background-color: #cbd5e0;
    color: #1a202c;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.section-header p {
    font-size: 1.1rem;
    color: #4a5568;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #1a202c;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.alt-bg {
    background-color: #f7fafc;
}

/* Content Layouts */
.content-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.content-text {
    flex: 1;
}

.content-text p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.content-visual {
    flex: 1;
}

.content-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* Philosophy and Feature Cards */
.philosophy-grid,
.team-grid,
.benefits-grid,
.reasons-grid,
.achievements-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.philosophy-card,
.team-member,
.reason-card,
.achievement-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.philosophy-card:hover,
.team-member:hover,
.reason-card:hover,
.achievement-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.feature-icon,
.member-icon,
.icon-image {
    width: 100%;
    height: 100%;
}

.philosophy-card h3,
.team-member h3,
.reason-card h3,
.achievement-item h3 {
    margin-bottom: 1rem;
}

.philosophy-card p,
.team-member p,
.reason-card p,
.achievement-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Collections */
.collections-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.collection-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-4px);
}

.collection-visual {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.collection-icon {
    width: 100%;
    height: 100%;
}

.link-arrow {
    color: #667eea;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.link-arrow:hover {
    color: #5568d3;
}

/* Benefits */
.benefits-list {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.benefit-number {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    opacity: 0.3;
    line-height: 1;
    flex-shrink: 0;
}

.benefit-content h3 {
    margin-bottom: 0.75rem;
}

.benefit-content p {
    color: #4a5568;
    line-height: 1.6;
}

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

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #4a5568;
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #f7fafc;
    border-left: 4px solid #667eea;
    border-radius: 4px;
    font-style: italic;
}

.testimonial-card p {
    margin-bottom: 1rem;
    color: #2d3748;
    line-height: 1.7;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: #667eea;
}

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

.process-step {
    flex: 1;
    min-width: 240px;
    text-align: center;
}

.step-marker {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.step-icon {
    width: 100%;
    height: 100%;
}

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

.process-step p {
    color: #4a5568;
    line-height: 1.6;
}

/* Values */
.values-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.value-block h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.value-block p {
    color: #4a5568;
    line-height: 1.7;
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e2e8f0;
}

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

.timeline-year {
    font-size: 1.25rem;
    font-weight: 700;
    color: #667eea;
    width: 60px;
    flex-shrink: 0;
    text-align: center;
    position: relative;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -17px;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: #667eea;
    border-radius: 50%;
    border: 3px solid #fff;
}

.timeline-content {
    flex: 1;
    padding: 1.5rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.timeline-content h3 {
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.6;
}

/* Principles List */
.principles-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.principle-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.principle-card h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.principle-card p {
    color: #4a5568;
    line-height: 1.7;
}

/* Services/Products */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.intro-content h2 {
    margin-bottom: 1rem;
}

.intro-content p {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.7;
}

.collection-description {
    text-align: center;
    color: #4a5568;
    font-size: 1.05rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-visual {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
}

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

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

.service-card p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #667eea;
}

/* Service Benefits */
.benefits-comparison {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-block {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

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

.benefit-block p {
    color: #4a5568;
    line-height: 1.6;
}

/* Process List */
.process-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-block {
    flex: 1;
    min-width: 240px;
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
    position: relative;
}

.process-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: #667eea;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.process-block h3 {
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.process-block p {
    color: #4a5568;
    line-height: 1.6;
}

/* Contact */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.info-icon {
    width: 100%;
    height: 100%;
}

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #4a5568;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-detail {
    font-size: 0.95rem;
    margin-top: 1rem;
}

.contact-link {
    color: #667eea;
    font-weight: 600;
}

.contact-link:hover {
    color: #5568d3;
}

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

.location-text {
    flex: 1;
}

.location-text p {
    margin-bottom: 1.25rem;
    color: #4a5568;
    line-height: 1.7;
}

.location-visual {
    flex: 1;
}

.location-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

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

.direction-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
    text-align: center;
}

.direction-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.transport-icon {
    width: 100%;
    height: 100%;
}

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

.direction-item p {
    color: #4a5568;
    line-height: 1.6;
}

.company-details {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.info-block h3 {
    margin-bottom: 1.5rem;
    color: #667eea;
}

.info-block p {
    margin-bottom: 0.75rem;
    color: #4a5568;
}

/* Thank You Page */
.thank-you-hero {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: #fff;
    padding: 6rem 0;
    text-align: center;
}

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

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

.success-icon {
    width: 100%;
    height: 100%;
}

.thank-you-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    min-width: 240px;
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
    text-align: center;
}

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

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

.step-card p {
    color: #4a5568;
    line-height: 1.6;
}

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

.browse-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: transform 0.3s ease;
}

.browse-card:hover {
    transform: translateY(-4px);
}

.browse-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.option-icon {
    width: 100%;
    height: 100%;
}

.browse-card h3 {
    margin-bottom: 1rem;
    color: #1a202c;
}

.browse-card p {
    color: #4a5568;
}

/* Legal Pages */
.legal-content {
    background-color: #f7fafc;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.legal-section h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}

.legal-section h3 {
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.legal-section h4 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #4a5568;
}

.legal-section p {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.legal-section ul,
.legal-section ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.75rem;
    color: #4a5568;
    line-height: 1.6;
    list-style: disc;
}

.legal-section ol li {
    list-style: decimal;
}

.legal-section a {
    color: #667eea;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #5568d3;
}

.cookie-table {
    margin: 2rem 0;
}

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

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

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-table th {
    background-color: #f7fafc;
    font-weight: 600;
    color: #2d3748;
}

.cookie-table td {
    color: #4a5568;
}

.link-button {
    color: #667eea;
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
}

.link-button:hover {
    color: #5568d3;
}

.guarantee-list {
    list-style: none;
    padding-left: 0;
}

.guarantee-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

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

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    background-color: #fff;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: #2d3748;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f7fafc;
}

.faq-icon {
    font-size: 1.5rem;
    color: #667eea;
    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;
}

.faq-answer p {
    padding: 1.25rem;
    color: #4a5568;
    line-height: 1.7;
    background-color: #f7fafc;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* Footer */
.footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 4rem 0 2rem;
}

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

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

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

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

.footer-col p {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #a0aec0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
}

.footer-bottom p {
    color: #718096;
    font-size: 0.9rem;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.6;
}

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* 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;
}

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

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

.cookie-options {
    margin-bottom: 2rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f7fafc;
    border-radius: 6px;
}

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

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
}

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

.cookie-option p {
    margin-top: 0.5rem;
    margin-left: 2rem;
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: normal;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    h2 {
        font-size: 1.875rem;
    }

    .section-header h2 {
        font-size: 1.875rem;
    }

    .content-split {
        flex-direction: column;
        gap: 2rem;
    }

    .location-content {
        flex-direction: column;
    }

    .philosophy-grid,
    .collections-grid,
    .service-grid,
    .benefits-comparison,
    .process-steps,
    .testimonials-grid,
    .team-grid,
    .contact-grid,
    .directions-grid,
    .company-details,
    .steps-grid,
    .browse-options,
    .reasons-grid,
    .achievements-grid,
    .benefits-grid,
    .process-list,
    .stats-grid {
        flex-direction: column;
    }

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

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

    .timeline::before {
        left: 30px;
    }

    .timeline-year {
        width: 30px;
        font-size: 1rem;
    }

    .timeline-year::after {
        right: -11px;
        width: 8px;
        height: 8px;
    }

    .timeline-item {
        gap: 1.5rem;
    }

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

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

    .cookie-actions {
        flex-direction: column;
    }

    .modal-actions {
        flex-direction: column;
    }

    .legal-document {
        padding: 2rem 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

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

    section {
        padding: 3rem 0;
    }

    .hero {
        padding: 4rem 0;
    }

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

    .page-hero {
        padding: 3rem 0;
    }

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

    .cta-content h2 {
        font-size: 1.875rem;
    }

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

    .legal-document {
        padding: 1.5rem 1rem;
    }
}

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

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

    a {
        color: #000;
        text-decoration: underline;
    }

    .page-hero {
        background: none;
        color: #000;
        padding: 1rem 0;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

button:focus,
a:focus,
input:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}