/* ========================================
   CSS Reset & Base Styles
   ======================================== */

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

html {
    font-size: 16px;
    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;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

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

a {
    color: #0077b6;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #005a8c;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    color: #1a1a2e;
    font-weight: 600;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

@media (min-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

/* ========================================
   Layout
   ======================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ========================================
   Header & Navigation
   ======================================== */

.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0077b6;
}

.logo:hover {
    color: #0077b6;
}

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

.nav {
    display: none;
}

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

.nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #0077b6;
    transition: width 0.3s ease;
}

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

.nav-link.active {
    color: #0077b6;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (min-width: 768px) {
    .nav {
        display: block;
    }

    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Navigation */
.nav.mobile-open {
    display: block;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

.nav.mobile-open .nav-list {
    flex-direction: column;
    gap: 0;
}

.nav.mobile-open .nav-link {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: #0077b6;
    color: #fff;
    border-color: #0077b6;
}

.btn-primary:hover {
    background: #005a8c;
    border-color: #005a8c;
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #0077b6;
    border-color: #0077b6;
}

.btn-secondary:hover {
    background: #0077b6;
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: #333;
    border-color: #ddd;
}

.btn-outline:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

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

/* ========================================
   Hero Section
   ======================================== */

.hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f0f7fa 0%, #e8f4f8 100%);
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.hero h1 {
    margin-bottom: 1.25rem;
    color: #1a1a2e;
}

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

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

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

@media (min-width: 768px) {
    .hero {
        padding: 5rem 0;
    }

    .hero .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .hero-content {
        flex: 1;
    }

    .hero-visual {
        flex: 1;
    }
}

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

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

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

.page-hero-small {
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .page-hero {
        padding: 4rem 0;
    }
}

/* ========================================
   Section Labels
   ======================================== */

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0077b6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

/* ========================================
   Stats Section
   ======================================== */

.stats-section {
    padding: 3rem 0;
    background: #0077b6;
    color: #fff;
}

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

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

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

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

@media (min-width: 768px) {
    .stats-section {
        padding: 4rem 0;
    }

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

/* ========================================
   Philosophy Section
   ======================================== */

.philosophy-section {
    padding: 4rem 0;
}

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

.philosophy-text h2 {
    margin-bottom: 1.25rem;
}

.philosophy-text p {
    color: #555;
    margin-bottom: 1rem;
}

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

.philosophy-visual svg {
    max-width: 300px;
}

@media (min-width: 768px) {
    .philosophy-section {
        padding: 5rem 0;
    }

    .philosophy-content {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .philosophy-text {
        flex: 1;
    }

    .philosophy-visual {
        flex: 0 0 300px;
    }
}

/* ========================================
   Services Highlight
   ======================================== */

.services-highlight {
    padding: 4rem 0;
    background: #f8f9fa;
}

.services-highlight h2 {
    margin-bottom: 2rem;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    color: #0077b6;
    margin-bottom: 1rem;
}

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

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

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

@media (min-width: 768px) {
    .services-highlight {
        padding: 5rem 0;
    }
}

/* ========================================
   Process Section
   ======================================== */

.process-section {
    padding: 4rem 0;
}

.process-section h2 {
    margin-bottom: 2.5rem;
}

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

.process-step {
    flex: 1;
    min-width: 220px;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid #0077b6;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #0077b6;
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

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

.process-step p {
    color: #666;
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .process-section {
        padding: 5rem 0;
    }
}

/* ========================================
   Testimonials
   ======================================== */

.testimonials-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.testimonials-section h2 {
    margin-bottom: 2rem;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

.testimonial-content {
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: #555;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #333;
}

.author-location {
    font-size: 0.875rem;
    color: #888;
}

@media (min-width: 768px) {
    .testimonials-section {
        padding: 5rem 0;
    }
}

/* ========================================
   Brands Section
   ======================================== */

.brands-section {
    padding: 4rem 0;
}

.brands-section h2 {
    margin-bottom: 1rem;
}

.brands-intro {
    color: #666;
    margin-bottom: 2rem;
    max-width: 700px;
}

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

.brand-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #333;
}

.brand-feature svg {
    width: 32px;
    height: 32px;
    color: #0077b6;
}

/* ========================================
   FAQ Section
   ======================================== */

.faq-section {
    padding: 4rem 0;
}

.faq-section h2 {
    margin-bottom: 2rem;
}

.faq-list {
    max-width: 800px;
}

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    gap: 1rem;
}

.faq-question:hover {
    color: #0077b6;
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #0077b6;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding-bottom: 1.25rem;
}

.faq-answer.open {
    display: block;
}

.faq-answer p {
    color: #555;
}

@media (min-width: 768px) {
    .faq-section {
        padding: 5rem 0;
    }
}

/* ========================================
   Tips Section
   ======================================== */

.tips-section {
    padding: 4rem 0;
    background: #f0f7fa;
}

.tips-section h2 {
    margin-bottom: 2rem;
}

.tips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.tip-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #0077b6;
}

.tip-card h3 {
    margin-bottom: 0.75rem;
}

.tip-card p {
    color: #555;
    font-size: 0.95rem;
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0077b6 0%, #005a8c 100%);
    color: #fff;
    text-align: center;
}

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

.cta-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: #fff;
    color: #0077b6;
    border-color: #fff;
}

.cta-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
    .cta-section {
        padding: 5rem 0;
    }
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: #1a1a2e;
    color: #ccc;
    padding: 3rem 0 1.5rem;
}

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

.footer-brand {
    flex: 2;
    min-width: 200px;
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

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

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

.footer-links a {
    color: #aaa;
    font-size: 0.9rem;
}

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

.footer-contact {
    flex: 1;
    min-width: 150px;
}

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

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
}

@media (min-width: 768px) {
    .footer {
        padding: 4rem 0 2rem;
    }
}

/* ========================================
   Cookie Banner & Modal
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    font-size: 0.9rem;
    color: #555;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }
}

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

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

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

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

.cookie-option {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #eee;
}

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

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

.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #0077b6;
}

.cookie-option p {
    font-size: 0.875rem;
    color: #666;
    margin-left: 1.65rem;
}

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

/* ========================================
   Story Section (About Page)
   ======================================== */

.story-section {
    padding: 4rem 0;
}

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

.story-text h2 {
    margin-bottom: 1.25rem;
}

.story-text p {
    color: #555;
    margin-bottom: 1rem;
}

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

.story-visual svg {
    max-width: 350px;
    width: 100%;
}

@media (min-width: 768px) {
    .story-section {
        padding: 5rem 0;
    }

    .story-content {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .story-text {
        flex: 1;
    }

    .story-visual {
        flex: 0 0 350px;
    }
}

/* ========================================
   Values Section
   ======================================== */

.values-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.values-section h2 {
    margin-bottom: 2rem;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-icon {
    width: 50px;
    height: 50px;
    color: #0077b6;
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 0.75rem;
}

.value-card p {
    color: #555;
    font-size: 0.95rem;
}

/* ========================================
   Team Section
   ======================================== */

.team-section {
    padding: 4rem 0;
}

.team-section h2 {
    margin-bottom: 1rem;
}

.team-intro {
    color: #555;
    margin-bottom: 2rem;
    max-width: 800px;
}

.team-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.role-card {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background: #f0f7fa;
    border-radius: 8px;
}

.role-icon {
    width: 50px;
    height: 50px;
    color: #0077b6;
    margin-bottom: 1rem;
}

.role-card h3 {
    margin-bottom: 0.75rem;
}

.role-card p {
    color: #555;
    font-size: 0.95rem;
}

/* ========================================
   Milestones Section
   ======================================== */

.milestones-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.milestones-section h2 {
    margin-bottom: 2rem;
}

.milestones-list {
    max-width: 800px;
}

.milestone-item {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #ddd;
}

.milestone-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.milestone-year {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0077b6;
    flex-shrink: 0;
    width: 60px;
}

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

.milestone-content p {
    color: #555;
    font-size: 0.95rem;
}

/* ========================================
   Approach Section
   ======================================== */

.approach-section {
    padding: 4rem 0;
}

.approach-section h2 {
    margin-bottom: 2rem;
}

.approach-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.approach-block {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    border-left: 3px solid #0077b6;
    background: #f8f9fa;
}

.approach-block h3 {
    margin-bottom: 0.75rem;
}

.approach-block p {
    color: #555;
    font-size: 0.95rem;
}

/* ========================================
   Partners Section
   ======================================== */

.partners-section {
    padding: 4rem 0;
    background: #f0f7fa;
}

.partners-section h2 {
    margin-bottom: 2rem;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.partner-type {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
}

.partner-type h3 {
    margin-bottom: 0.75rem;
    color: #0077b6;
}

.partner-type p {
    color: #555;
    font-size: 0.95rem;
}

/* ========================================
   Services Page - Categories
   ======================================== */

.services-intro {
    padding: 2rem 0;
    background: #fff;
}

.services-intro-content p {
    color: #555;
    max-width: 800px;
}

.service-category {
    padding: 3rem 0;
}

.service-category.alt-bg {
    background: #f8f9fa;
}

.category-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-icon {
    width: 80px;
    height: 80px;
    color: #0077b6;
}

.category-info h2 {
    margin-bottom: 0.5rem;
}

.category-info p {
    color: #555;
}

@media (min-width: 768px) {
    .category-header {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
    }

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

.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.product-card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
}

.service-category.alt-bg .product-card {
    background: #fff;
}

.product-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.product-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-price {
    font-weight: 600;
    color: #0077b6;
    font-size: 1.1rem;
}

/* ========================================
   Benefits Section
   ======================================== */

.benefits-section {
    padding: 4rem 0;
    background: #0077b6;
    color: #fff;
}

.benefits-section h2 {
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.benefit-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    color: #fff;
}

.benefit-item h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-item p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ========================================
   Contact Page
   ======================================== */

.contact-main {
    padding: 3rem 0;
}

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

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

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: #0077b6;
}

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

.contact-detail {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
}

.hours-list {
    text-align: left;
    margin-bottom: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

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

/* Directions */
.directions-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.directions-section h2 {
    margin-bottom: 2rem;
}

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

.direction-card {
    flex: 1;
    min-width: 220px;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.direction-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    color: #0077b6;
}

.direction-card h3 {
    margin-bottom: 0.75rem;
}

.direction-card p {
    color: #555;
    font-size: 0.9rem;
}

/* Company Section */
.company-section {
    padding: 4rem 0;
}

.company-section h2 {
    margin-bottom: 2rem;
}

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

.company-block {
    flex: 1;
    min-width: 250px;
}

.company-block h3 {
    margin-bottom: 1rem;
    color: #0077b6;
}

.company-list {
    list-style: none;
}

.company-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.company-block p {
    color: #555;
    font-size: 0.95rem;
}

/* About Store Section */
.about-store-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.about-store-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-store-text h2 {
    margin-bottom: 1.25rem;
}

.about-store-text p {
    color: #555;
    margin-bottom: 1rem;
}

.about-store-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.store-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

.store-feature svg {
    width: 24px;
    height: 24px;
    color: #0077b6;
}

@media (min-width: 768px) {
    .about-store-content {
        flex-direction: row;
        gap: 3rem;
    }

    .about-store-text {
        flex: 2;
    }

    .about-store-features {
        flex: 1;
        flex-direction: column;
    }
}

/* Message Section */
.message-section {
    padding: 4rem 0;
}

.message-content h2 {
    margin-bottom: 1.25rem;
}

.message-content p {
    color: #555;
    margin-bottom: 1rem;
}

.message-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.message-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.message-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0077b6;
}

/* ========================================
   Thank You Page
   ======================================== */

.thank-you-section {
    padding: 5rem 0;
    text-align: center;
}

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

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

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

.thank-you-text {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1rem;
}

.thank-you-section p {
    color: #666;
    margin-bottom: 1.5rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Meanwhile Section */
.meanwhile-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.meanwhile-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.meanwhile-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: #333;
}

.meanwhile-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    color: #333;
}

.meanwhile-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: #0077b6;
}

.meanwhile-card h3 {
    margin-bottom: 0.5rem;
}

.meanwhile-card p {
    color: #666;
    font-size: 0.9rem;
}

/* ========================================
   Legal Pages
   ======================================== */

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

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

.legal-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.legal-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.legal-text p {
    color: #555;
    margin-bottom: 1rem;
}

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

.legal-text ul {
    list-style: disc;
}

.legal-text ol {
    list-style: decimal;
}

.legal-text li {
    color: #555;
    margin-bottom: 0.5rem;
}

.legal-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    font-style: italic;
    color: #888;
}

@media (min-width: 768px) {
    .legal-content {
        padding: 4rem 0;
    }
}

/* ========================================
   Accessibility
   ======================================== */

:focus-visible {
    outline: 2px solid #0077b6;
    outline-offset: 2px;
}

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

/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #0077b6;
    color: #fff;
    padding: 8px 16px;
    z-index: 200;
    transition: top 0.2s;
}

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

/* ========================================
   Print Styles
   ======================================== */

@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .mobile-menu-btn {
        display: none !important;
    }

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

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