/* --- GRUNDLÄGGANDE DESIGN (CSS) --- */

:root {
    --clr-burgundy: #603838; /* En något mjukare, brunare vinröd */
    --clr-logo-red: #C0392B;
    --clr-blue-cta: #33415e; /* User requested blue */
    --clr-dark-grey: #333333; /* Mörkare för bättre kontrast */
    --clr-light-grey: #F8F9FA; /* Ljusare, renare grå */
    --clr-white: #FFFFFF;
    --ff-primary: 'Poppins', sans-serif;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-bold: 700;
}

/* Performance optimizations */
* {
    box-sizing: border-box;
}

/* Optimize animations */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Optimize for paint and layout */
.card, .pricing-card, .treatment-card {
    will-change: transform;
    contain: layout style paint;
}

.hero-image-frame {
    will-change: transform;
    contain: layout style paint;
}

/* Grundläggande reset och sidinställningar */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-primary); font-weight: var(--fw-regular); line-height: 1.7; margin: 0; color: var(--clr-dark-grey); background-color: var(--clr-white); }
h1, h2, h3 { line-height: 1.2; font-weight: var(--fw-bold); color: var(--clr-burgundy); }
h2.section-title { font-size: clamp(2rem, 5vw, 2.5rem); text-align: center; margin-bottom: 3rem; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Screen reader only text - completely hidden visually */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Header och Logotyp */
.site-header { background: var(--clr-white); padding: 0.75rem 0; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 100; }
.header-container { display: flex; justify-content: space-between; align-items: center; }
.site-logo { max-height: 65px; width: auto; height: auto; }
.nav-list { margin: 0; padding: 0; list-style: none; display: flex; align-items: center; gap: 2rem; }
.nav-list a { text-decoration: none; color: var(--clr-dark-grey); font-weight: var(--fw-medium); transition: color 0.3s ease; }
.nav-list a:not(.cta-button):hover, .nav-list a:not(.cta-button):focus { color: var(--clr-logo-red); }

/* CTA-knapp */
.cta-button { background-color: var(--clr-blue-cta); color: var(--clr-white) !important; padding: 0.8rem 1.6rem; border-radius: 5px; text-decoration: none; font-weight: var(--fw-bold); transition: background-color 0.3s ease, transform 0.2s ease; display: inline-block; }
.cta-button:hover, .cta-button:focus { background-color: #2a3549; color: var(--clr-white) !important; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(51, 65, 94, 0.4); }

/* Hero-sektion - Förfinad med mjuk, neutral färgpalett */
.hero-section { 
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 50%, #f0f0f0 100%);
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-container { 
    display: flex; 
    align-items: center; 
    gap: 4rem; 
    position: relative;
    z-index: 3;
}

.hero-text { 
    flex: 1 1 50%; 
    text-align: left; 
    color: var(--clr-dark-grey);
}

.hero-text h1 { 
    font-size: clamp(2.5rem, 5vw, 3.8rem); 
    color: var(--clr-burgundy);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text .subtitle { 
    font-size: 1.2rem; 
    max-width: 500px; 
    margin: 1rem 0 2rem 0; 
    color: #666;
    line-height: 1.6;
    font-weight: var(--fw-regular);
}

.hero-image-wrapper { 
    flex: 1 1 50%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    position: relative;
}

.hero-image-frame { 
    position: relative; 
    transform: perspective(1000px) rotateY(-3deg);
    transition: transform 0.4s ease;
}

.hero-image-frame:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-image-frame img { 
    display: block; 
    width: 100%; 
    max-width: 800px; 
    height: auto;
    border-radius: 12px; 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Trust Bar */
.trust-bar { 
    background: linear-gradient(135deg, var(--clr-light-grey) 0%, #f0f2f5 100%); 
    padding: 2rem 0; 
    border-bottom: 1px solid #e8eaed; 
    position: relative;
}

.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--clr-burgundy) 50%, transparent 100%);
}

.trust-container { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 1.5rem; 
    max-width: 900px;
    margin: 0 auto;
}

.trust-section { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 0.75rem; 
    padding: 1.25rem;
    background: var(--clr-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 280px;
}

.trust-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.trust-label { 
    font-size: 1rem; 
    color: var(--clr-burgundy); 
    margin: 0; 
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.5rem;
}

.trust-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--clr-blue-cta);
    border-radius: 1px;
}

.professional-logo img { 
    max-height: 60px; 
    width: auto; 
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.wellness-logos { 
    display: flex; 
    gap: 2rem; 
    align-items: center;
}

.wellness-logos .trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wellness-logos .trust-item img {
    max-height: 50px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.trust-item img { 
    max-height: 60px; 
    width: auto; 
    height: auto;
    transition: transform 0.3s ease; 
}

.trust-item img:hover {
    transform: scale(1.05);
}

/* Linked logos styling */
.trust-item a {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.trust-item a:hover {
    transform: scale(1.05);
}

.trust-item a:hover img {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

/* Om mig-summering */
.section { padding: 6rem 0; }
.about-summary-container { display: flex; align-items: center; gap: 4rem; flex-wrap: wrap; }
.about-summary-image { flex: 1 1 300px; }
.about-summary-image img { width: 100%; height: auto; border-radius: 8px; }
.about-summary-text { flex: 2 1 400px; }

/* Behandlings-sektion */
.treatments { background-color: var(--clr-light-grey); }
.card-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.card { background: var(--clr-white); border-radius: 8px; box-shadow: 0 5px 25px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; overflow: hidden; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-8px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.card-image { width: 100%; height: 200px; object-fit: cover; }
.card-content { padding: 2rem; border-top: 4px solid var(--clr-burgundy); }
.card-content h3 { margin-top: 0; color: var(--clr-burgundy); }
.card-link { display: inline-block; margin-top: 1rem; text-decoration: none; color: var(--clr-blue-cta); font-weight: var(--fw-bold); }

/* --- NY KONTAKTSEKTION --- */
.contact-section { background-color: var(--clr-white); padding-bottom: 0; }
.contact-container { display: flex; gap: 4rem; flex-wrap: wrap; }
.contact-info { flex: 1 1 400px; }
.contact-info .section-title { text-align: left; }
.contact-info p { margin-bottom: 1.5rem; }
.contact-info ul { list-style: none; padding: 0; }
.contact-info li { margin-bottom: 1rem; font-size: 1.1rem; }
.contact-info li strong { color: var(--clr-burgundy); }
.contact-map { flex: 1.5 1 500px; min-height: 400px; }
.contact-map iframe { border-radius: 8px; width: 100%; height: 100%; }

.social-links {
    margin: 2rem 0;
}

.social-links h3 {
    color: var(--clr-burgundy);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--clr-dark-grey);
    padding: 1rem;
    border-radius: 50%;
    background: var(--clr-light-grey);
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    min-width: 50px;
}

.social-link:hover {
    background: var(--clr-burgundy);
    color: var(--clr-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(96, 56, 56, 0.3);
}

.social-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.booking-info {
    margin: 2rem 0;
}

.booking-info h3 {
    color: var(--clr-burgundy);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.booking-info a {
    color: var(--clr-blue-cta);
    text-decoration: none;
    font-weight: var(--fw-bold);
    transition: color 0.3s ease;
}

.booking-info a:hover {
    color: #2a3549;
    text-decoration: underline;
}

.opening-hours {
    margin: 2rem 0;
}

.opening-hours h3 {
    color: var(--clr-burgundy);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.opening-hours p {
    color: var(--clr-dark-grey);
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.site-footer { background-color: var(--clr-dark-grey); color: var(--clr-light-grey); padding: 2rem 0; margin-top: 6rem; text-align: center; font-size: 0.9rem; }

/* Mobilmeny och responsivitet */
.mobile-nav-toggle {
    display: none;
}

@media (max-width: 850px) {
    .hero-section {
        background-attachment: scroll;
        padding: 4rem 0;
        min-height: auto;
    }
    
    .hero-container { 
        flex-direction: column; 
        text-align: center; 
        gap: 3rem;
    }
    
    .hero-text { 
        text-align: center; 
    }
    
    .hero-image-frame {
        transform: none;
    }
    
    .hero-image-frame:hover {
        transform: scale(1.02);
    }
}
@media (max-width: 768px) {
    .nav-list { position: fixed; inset: 0 0 0 30%; flex-direction: column; padding: min(20vh, 10rem) 2em; gap: 2em; background: hsla(0, 0%, 100%, 0.95); backdrop-filter: blur(1rem); transform: translateX(100%); transition: transform 350ms ease-out; z-index: 1000; }
    .primary-navigation[data-visible="true"] .nav-list { transform: translateX(0%); }
    .mobile-nav-toggle { display: block; position: fixed; z-index: 9999; top: 1.5rem; right: 1.5rem; width: 2rem; aspect-ratio: 1; border:0; background:transparent; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(74, 74, 74)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); background-repeat: no-repeat; }
    .mobile-nav-toggle[aria-expanded="true"] { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(74, 74, 74)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6l18 18M24 6L6 24'/%3e%3c/svg%3e"); }
    .about-summary-container, .contact-container { text-align: center; }
    .about-summary-text { text-align: left; }
    .contact-info .section-title { text-align: center; }
    
    /* Center CTA button in hero section on mobile */
    .hero-text .cta-button {
        display: block;
        margin: 0 auto;
        text-align: center;
        width: fit-content;
    }
    
    .social-icons {
        justify-content: center;
        margin: 0 auto;
    }
    .trust-container {
        gap: 2rem;
    }
    
    .trust-section {
        padding: 1.5rem;
        min-width: 250px;
    }
    
    .wellness-logos {
        gap: 2rem;
    }
    
    .trust-item img {
        max-height: 40px;
    }
    
    .professional-logo img {
        max-height: 45px;
    }
}

/* --- STYLING FÖR NYA SIDOR --- */

/* Behandlingar sida */
.treatments-detail {
    background-color: var(--clr-light-grey);
}

.treatment-grid {
    display: grid;
    gap: 3rem;
    margin-top: 2rem;
}

.treatment-card {
    background: var(--clr-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.treatment-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.treatment-content {
    padding: 2rem;
}

.treatment-content h2 {
    color: var(--clr-burgundy);
    margin-bottom: 1rem;
}

.treatment-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.treatment-content li {
    margin-bottom: 0.5rem;
    color: #666;
}

.treatment-approach {
    background: var(--clr-white);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.approach-item {
    text-align: center;
    padding: 2rem;
    background: var(--clr-light-grey);
    border-radius: 12px;
    border-left: 4px solid var(--clr-burgundy);
}

.approach-item h3 {
    color: var(--clr-burgundy);
    margin-bottom: 1rem;
}

/* Om mig sida */
.about-detail {
    background: var(--clr-white);
}

.about-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 2;
}

.about-text h2 {
    color: var(--clr-burgundy);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #666;
}

.qualifications {
    background: var(--clr-light-grey);
}

.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.qualification-item {
    background: var(--clr-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.qualification-item h3 {
    color: var(--clr-burgundy);
    margin-bottom: 1rem;
}

.qualification-item ul {
    list-style: none;
    padding: 0;
}

.qualification-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.qualification-item li:last-child {
    border-bottom: none;
}

.philosophy {
    background: var(--clr-white);
}

.philosophy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.philosophy-item {
    text-align: center;
    padding: 2rem;
}

.philosophy-item h3 {
    color: var(--clr-burgundy);
    margin-bottom: 1rem;
}

.philosophy-item p {
    color: #666;
    line-height: 1.6;
}

/* Priser sida */
.pricing {
    background: var(--clr-light-grey);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: var(--clr-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.pricing-card h3 {
    color: var(--clr-burgundy);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: var(--fw-bold);
    color: var(--clr-burgundy);
    margin-bottom: 0.5rem;
}

.duration {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: var(--fw-medium);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--clr-blue-cta);
    font-weight: var(--fw-bold);
}

.pricing-card li:last-child {
    margin-bottom: 0;
}

.note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--clr-burgundy);
}

.cancellation-policy {
    background-color: #f8f9fa;
}

.policy-content {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.policy-card {
    background: var(--clr-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-left: 4px solid var(--clr-burgundy);
    width: 100%;
}

.policy-card h3 {
    color: var(--clr-burgundy);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.policy-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.policy-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.policy-card li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #eee;
}

.policy-card li:last-child {
    border-bottom: none;
}

.policy-card li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: #f39c12;
    font-weight: var(--fw-bold);
    font-size: 1.1rem;
}

.policy-card li strong {
    color: var(--clr-burgundy);
}

.policy-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fff3cd;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
}

.insurance {
    background: var(--clr-white);
}

.insurance-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.insurance-item {
    padding: 2rem;
    background: var(--clr-light-grey);
    border-radius: 12px;
    border-left: 4px solid var(--clr-blue-cta);
}

.insurance-item h3 {
    color: var(--clr-burgundy);
    margin-bottom: 1rem;
}

.insurance-item p {
    color: #666;
    line-height: 1.6;
}

.practical-info {
    background: var(--clr-light-grey);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-item {
    background: var(--clr-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.info-item h3 {
    color: var(--clr-burgundy);
    margin-bottom: 1rem;
}

.info-item ul {
    list-style: none;
    padding: 0;
}

.info-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.info-item li:last-child {
    border-bottom: none;
}

/* CTA sektion för alla sidor */
.cta-section {
    background: linear-gradient(135deg, #3d121b 0%, #82252f 100%);
    color: var(--clr-white);
    text-align: center;
}

.cta-section h2 {
    color: var(--clr-white);
    margin-bottom: 1rem;
}

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

/* Responsiv design för nya sidor */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .treatment-card {
        flex-direction: column;
    }
    
    .pricing-grid,
    .qualifications-grid,
    .philosophy-content,
    .insurance-content,
    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Picture element support for responsive images */
picture {
    display: block;
    width: 100%;
    height: 100%;
}

picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ensure card images maintain aspect ratio */
.card picture {
    height: 200px;
}

.treatment-image picture {
    height: 100%;
}

.hero-image-frame picture {
    height: 100%;
}

.about-summary-image picture {
    height: 100%;
}

.about-image picture {
    height: 100%;
}

/* Trust bar logo sizing */
.trust-item picture {
    height: auto;
    max-height: 60px;
}

.professional-logo picture {
    height: auto;
    max-height: 60px;
}

.wellness-logos picture {
    height: auto;
    max-height: 50px;
}

/* Cookie Consent Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--clr-white);
    border-top: 2px solid var(--clr-burgundy);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 1.5rem;
    transition: opacity 0.3s ease;
}

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

.cookie-text h3 {
    margin: 0 0 0.5rem 0;
    color: var(--clr-burgundy);
    font-size: 1.2rem;
}

.cookie-text p {
    margin: 0 0 1rem 0;
    line-height: 1.5;
    color: var(--clr-dark-grey);
}

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

.cookie-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 0;
}

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

.cookie-option span {
    font-size: 0.9rem;
    color: var(--clr-dark-grey);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: var(--fw-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.accept-btn {
    background-color: var(--clr-burgundy);
    color: var(--clr-white);
}

.accept-btn:hover {
    background-color: #4a2d2d;
    transform: translateY(-1px);
}

.reject-btn {
    background-color: #f8f9fa;
    color: var(--clr-dark-grey);
    border: 1px solid #dee2e6;
}

.reject-btn:hover {
    background-color: #e9ecef;
}

/* Mobile responsive for cookie banner */
@media (max-width: 768px) {
    #cookie-banner {
        padding: 1rem;
    }
    
    .cookie-content {
        gap: 0.75rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}

/* Cookie consent link in footer */
.cookie-settings {
    margin-top: 1rem;
    text-align: center;
}

.cookie-settings button {
    background: none;
    border: none;
    color: var(--clr-light-grey);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.8rem;
}

.cookie-settings button:hover {
    color: var(--clr-white);
}

/* Privacy Policy Page */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.privacy-content h2 {
    color: var(--clr-burgundy);
    margin: 2rem 0 1rem 0;
    font-size: 1.8rem;
}

.privacy-content h3 {
    color: var(--clr-burgundy);
    margin: 1.5rem 0 0.75rem 0;
    font-size: 1.3rem;
}

.privacy-content p {
    margin-bottom: 1rem;
    color: var(--clr-dark-grey);
}

.privacy-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
    color: var(--clr-dark-grey);
}

.cookie-settings-section {
    background: var(--clr-light-grey);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}

.cookie-settings-section h2 {
    margin-top: 0;
}

.cookie-settings-section p {
    margin-bottom: 1.5rem;
}

/* Font optimization */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecg.woff2') format('woff2');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2') format('woff2');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2') format('woff2');
}

/* Ensure all images maintain aspect ratios and prevent layout shifts */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Map placeholder styles */
.map-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #dee2e6;
    transition: all 0.3s ease;
    cursor: pointer;
}

.map-placeholder:hover {
    border-color: var(--clr-burgundy);
    background: linear-gradient(135deg, #f1f3f4 0%, #e3e6ea 100%);
}

.map-placeholder-content {
    text-align: center;
    color: var(--clr-dark-grey);
}

.map-icon {
    width: 64px;
    height: 64px;
    color: var(--clr-burgundy);
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    margin: 0 0 0.5rem 0;
    color: var(--clr-burgundy);
    font-size: 1.5rem;
}

.map-placeholder p {
    margin: 0 0 1.5rem 0;
    color: #666;
    font-size: 1rem;
}

.load-map-btn {
    background-color: var(--clr-blue-cta);
    color: var(--clr-white);
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: 5px;
    font-weight: var(--fw-bold);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1rem;
}

.load-map-btn:hover {
    background-color: #2a3549;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(51, 65, 94, 0.4);
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
}
