/* 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: #4a90a4;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2d5a68;
}

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4a90a4;
}

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

.nav-menu {
    display: none;
    flex-direction: column;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.nav-menu a {
    display: block;
    padding: 1rem 20px;
    color: #333;
    transition: background-color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #e8f4f8;
    color: #4a90a4;
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

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

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

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

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

@media (min-width: 768px) {
    .mobile-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
    }

    .nav-menu li {
        border-bottom: none;
    }

    .nav-menu a {
        padding: 0.5rem 1rem;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background-color: transparent;
        color: #4a90a4;
    }
}

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

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d5a68;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero {
    background-color: #e8f4f8;
    padding: 3rem 0;
    text-align: center;
}

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

.lead {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #4a90a4;
    color: #fff;
    border-color: #4a90a4;
}

.btn-primary:hover {
    background-color: #2d5a68;
    border-color: #2d5a68;
    color: #fff;
}

.btn-secondary {
    background-color: #fff;
    color: #4a90a4;
    border-color: #4a90a4;
}

.btn-secondary:hover {
    background-color: #4a90a4;
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    color: #4a90a4;
    border-color: #4a90a4;
}

.btn-outline:hover {
    background-color: #4a90a4;
    color: #fff;
}

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

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

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

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

.section-header.center {
    text-align: center;
}

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

.section-title-center {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2d5a68;
}

/* Feature Grid */
.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    margin: 0 auto 1rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2d5a68;
}

@media (min-width: 768px) {
    .feature-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .feature-item {
        flex: 1 1 calc(33.333% - 2rem);
        min-width: 250px;
    }
}

/* Content Split */
.content-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2d5a68;
}

.content-text p {
    margin-bottom: 1rem;
}

.content-visual {
    flex: 1;
    text-align: center;
}

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

@media (min-width: 768px) {
    .content-split {
        flex-direction: row;
    }
}

/* Stats Section */
.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: #e8f4f8;
    border-radius: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4a90a4;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #555;
}

@media (min-width: 768px) {
    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1 1 calc(25% - 2rem);
        min-width: 200px;
    }
}

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

.collection-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.card-icon {
    margin: 0 auto 1.5rem;
}

.collection-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2d5a68;
}

@media (min-width: 768px) {
    .collections-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .collection-card {
        flex: 1 1 calc(33.333% - 2rem);
        min-width: 280px;
    }
}

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

.testimonial-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #4a90a4;
}

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

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

.testimonial-author strong {
    display: block;
    color: #2d5a68;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #777;
}

@media (min-width: 768px) {
    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 1 1 calc(33.333% - 2rem);
        min-width: 280px;
    }
}

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

.process-step {
    position: relative;
    padding-left: 4rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    background-color: #4a90a4;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2d5a68;
}

@media (min-width: 768px) {
    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1 1 calc(50% - 2rem);
        min-width: 300px;
    }
}

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

.value-block {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.value-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2d5a68;
}

@media (min-width: 768px) {
    .values-layout {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-block {
        flex: 1 1 calc(50% - 2rem);
        min-width: 280px;
    }
}

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

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 0.5rem;
}

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

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 0 1.5rem 0;
    color: #555;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-icon {
    margin-bottom: 1.5rem;
}

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

.service-card p {
    flex: 1;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #4a90a4;
}

@media (min-width: 768px) {
    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 2rem);
        min-width: 280px;
    }
}

.category-header-section {
    margin-bottom: 2rem;
}

.category-header-section h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #2d5a68;
}

/* Benefits Grid */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    padding: 1.5rem;
    background-color: #e8f4f8;
    border-radius: 8px;
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #2d5a68;
}

@media (min-width: 768px) {
    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 1 1 calc(50% - 2rem);
        min-width: 280px;
    }
}

/* Care Steps */
.care-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.care-step {
    text-align: center;
}

.step-icon {
    margin: 0 auto 1rem;
}

.care-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #2d5a68;
}

@media (min-width: 768px) {
    .care-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .care-step {
        flex: 1 1 calc(25% - 2rem);
        min-width: 220px;
    }
}

/* Size Table */
.sizing-info {
    max-width: 900px;
    margin: 0 auto;
}

.size-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
}

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

.size-table th {
    background-color: #e8f4f8;
    color: #2d5a68;
    font-weight: 600;
}

.size-table tr:hover {
    background-color: #f9f9f9;
}

/* Contact Grid */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2d5a68;
}

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

.info-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #4a90a4;
}

.info-detail {
    font-size: 0.9rem;
    color: #777;
    margin-top: 0.5rem;
}

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

.hours-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-visual {
    text-align: center;
}

@media (min-width: 768px) {
    .contact-grid {
        flex-direction: row;
    }

    .contact-info,
    .contact-visual {
        flex: 1;
    }
}

/* Directions Grid */
.directions-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.direction-item {
    text-align: center;
}

.direction-icon {
    margin: 0 auto 1rem;
}

.direction-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #2d5a68;
}

@media (min-width: 768px) {
    .directions-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .direction-item {
        flex: 1 1 calc(50% - 2rem);
        min-width: 250px;
    }
}

/* Practical Grid */
.practical-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.practical-item {
    padding: 1.5rem;
    background-color: #e8f4f8;
    border-radius: 8px;
}

.practical-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #2d5a68;
}

@media (min-width: 768px) {
    .practical-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .practical-item {
        flex: 1 1 calc(50% - 2rem);
        min-width: 280px;
    }
}

/* Company Details */
.company-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.company-detail-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.company-detail-item h3 {
    font-size: 1rem;
    color: #777;
    margin-bottom: 0.5rem;
}

.company-detail-item p {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

@media (min-width: 768px) {
    .company-details {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .company-detail-item {
        flex: 1 1 calc(50% - 2rem);
        min-width: 250px;
    }
}

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

.timeline-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    padding-left: 2rem;
    border-left: 3px solid #4a90a4;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 0;
    width: 15px;
    height: 15px;
    background-color: #4a90a4;
    border-radius: 50%;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4a90a4;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2d5a68;
}

/* Team Grid */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.member-avatar {
    margin: 0 auto 1.5rem;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2d5a68;
}

.member-role {
    font-size: 0.95rem;
    color: #4a90a4;
    margin-bottom: 1rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(50% - 2rem);
        min-width: 280px;
    }
}

/* Philosophy Grid */
.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-item {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.philosophy-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d5a68;
}

.philosophy-item p {
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .philosophy-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-item {
        flex: 1 1 calc(50% - 2rem);
        min-width: 300px;
    }
}

/* Certifications Grid */
.cert-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cert-item {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.cert-icon {
    margin: 0 auto 1rem;
}

.cert-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #2d5a68;
}

@media (min-width: 768px) {
    .cert-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .cert-item {
        flex: 1 1 calc(50% - 2rem);
        min-width: 280px;
    }
}

/* Impact Stats */
.impact-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.impact-stat {
    text-align: center;
}

.stat-visual {
    margin: 0 auto 1rem;
}

.impact-stat .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #4a90a4;
    margin: 1rem 0;
}

@media (min-width: 768px) {
    .impact-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .impact-stat {
        flex: 1 1 calc(50% - 2rem);
        min-width: 250px;
    }
}

/* Vision Content */
.vision-content {
    max-width: 900px;
    margin: 0 auto;
}

.vision-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #555;
}

.vision-goals {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.goal-item {
    padding: 1.5rem;
    background-color: #e8f4f8;
    border-radius: 8px;
}

.goal-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #2d5a68;
}

@media (min-width: 768px) {
    .vision-goals {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .goal-item {
        flex: 1 1 calc(50% - 2rem);
        min-width: 280px;
    }
}

/* Thank You */
.thankyou-hero {
    background: linear-gradient(135deg, #e8f4f8 0%, #b8dce8 100%);
    padding: 4rem 0;
    text-align: center;
}

.thankyou-content {
    max-width: 700px;
    margin: 0 auto;
}

.thankyou-icon {
    margin: 0 auto 2rem;
}

.thankyou-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d5a68;
}

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

.step-card {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    text-align: center;
}

.step-card .step-icon {
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d5a68;
}

.step-card p {
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .steps-grid {
        flex-direction: row;
    }

    .step-card {
        flex: 1;
    }
}

.info-content-center {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.info-content-center h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d5a68;
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trust-item {
    text-align: center;
    padding: 1.5rem;
    background-color: #e8f4f8;
    border-radius: 8px;
}

.trust-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2d5a68;
}

@media (min-width: 768px) {
    .trust-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust-item {
        flex: 1 1 calc(50% - 2rem);
        min-width: 250px;
    }
}

/* Legal Pages */
.legal-hero {
    background-color: #e8f4f8;
    padding: 3rem 0;
    text-align: center;
}

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

.legal-update {
    font-size: 0.95rem;
    color: #777;
}

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

.legal-text h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #2d5a68;
}

.legal-text h3 {
    font-size: 1.3rem;
    margin: 2rem 0 0.75rem;
    color: #4a90a4;
}

.legal-text h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem;
    color: #2d5a68;
}

.legal-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-text ul,
.legal-text ol {
    margin: 1rem 0 1rem 2rem;
}

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

.legal-text strong {
    color: #2d5a68;
}

.legal-text a {
    text-decoration: underline;
}

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

.data-table th,
.data-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.data-table th {
    background-color: #e8f4f8;
    color: #2d5a68;
    font-weight: 600;
}

.data-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

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

.context-content p {
    margin-bottom: 1rem;
}

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

.about-content p {
    margin-bottom: 1rem;
}

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

.intro-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d5a68;
}

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

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

.story-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d5a68;
}

.story-content p {
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background-color: #e8f4f8;
    padding: 4rem 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

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

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-col p {
    color: #b8dce8;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col a {
    color: #b8dce8;
}

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

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

.footer-bottom p {
    color: #b8dce8;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(45, 90, 104, 0.98);
    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-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

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

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

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

    .cookie-actions {
        flex-shrink: 0;
    }
}

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

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

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

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #2d5a68;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #777;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 1;
}

.modal-close:hover {
    color: #333;
}

.modal-body {
    padding: 1.5rem;
}

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

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.category-header h4 {
    margin: 0;
    color: #2d5a68;
}

.cookie-category p {
    color: #555;
    font-size: 0.95rem;
}

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

/* Accessibility */
:focus {
    outline: 2px solid #4a90a4;
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid #4a90a4;
    outline-offset: 2px;
}

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

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

    a {
        text-decoration: underline;
    }
}