/* --- Variables --- */
:root {
    /* Brand Colors */
    --primary: #00a8ff;       
    --primary-yellow: #fbc531; 
    --primary-green: #2ed573;  
    --primary-purple: #9b59b6; 
    --primary-orange: #ff793f; 
    --greek-blue: #005a9c;     
    
    /* Premium Modern Palette */
    --bg-main: #FAFBFD;    /* Απαλό "Μαργαριταρένιο" Λευκό */
    --bg-alt: #F0F4F8;     /* Κομψό γκριζο-γάλαζο (Aegean Breeze) */
    --dark: #1E293B;       /* Βαθύ Slate Blue/Gray */
    --text: #475569;       /* Κομψό γκρι για κείμενο */
    --white: #ffffff;      
    
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Global --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background-color: var(--bg-main); color: var(--text); line-height: 1.6; overflow-x: hidden; }
html { scroll-behavior: smooth; }
html::-webkit-scrollbar { display: none; }
html { -ms-overflow-style: none; scrollbar-width: none; }

/* Header - SEAMLESS INITIAL STATE */
header {
    position: fixed; top: 0; width: 100%; height: 95px; display: flex; justify-content: center;
    align-items: center; z-index: 1000;
    background: transparent; 
    box-shadow: none; 
    transition: var(--transition);
}

/* Header - SCROLLED STATE */
header.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.96); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Header - MENU OPEN STATE */
header.menu-open {
    background: var(--bg-main) !important;
    box-shadow: none !important;
}

.header-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; height: 100%; }
.logo { display: flex; align-items: center; z-index: 1001; } 
.logo-img { height: 75px; width: auto; display: block; transition: var(--transition); }
header.scrolled .logo-img { height: 55px; } 

.nav-links { display: flex; list-style: none; gap: 30px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 600; font-size: 0.95rem; transition: var(--transition); position: relative; }
.nav-links a:hover { color: var(--primary); }

/* ΔΙΑΔΡΑΣΤΙΚΟ HOVER & ACTIVE LINK ΣΤΟ ΜΕΝΟΥ */
.nav-links a.active-link { color: var(--primary); }
.nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -6px; left: 0; background-color: var(--primary); transition: var(--transition); }
.nav-links a.active-link::after, .nav-links a:hover::after { width: 100%; }

.btn-nav { background: var(--primary); color: white !important; padding: 10px 22px; border-radius: 50px; }
.btn-nav::after { display: none !important; }
.btn-nav:hover { background: #0097e6; transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0, 168, 255, 0.3); } 
.mobile-menu-btn { display: none; font-size: 1.6rem; cursor: pointer; color: var(--dark); z-index: 1001; transition: var(--transition); } 

.lang-switcher { display: flex; gap: 8px; border-left: 1px solid #e2e8f0; padding-left: 20px; }
.lang-switcher button { background: none; border: 1px solid #cbd5e1; padding: 4px 10px; cursor: pointer; font-weight: 700; border-radius: 6px; font-size: 0.75rem; color: var(--text); transition: var(--transition); }
.lang-switcher button.active { background: var(--dark); color: white; border-color: var(--dark); }

/* --- HERO SECTION --- */
.hero {
    min-height: 85vh; 
    display: flex;
    align-items: center;
    background-color: var(--bg-main); 
    position: relative;
    padding-top: 120px; 
    padding-bottom: 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; 
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text-side { text-align: left; }
#hero-title { font-family: 'Italianno', cursive; font-size: clamp(3.5rem, 7.5vw, 6.5rem); font-weight: 400; line-height: 1.1; margin-bottom: 20px; }
.hero-text-side p { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--text); font-weight: 300; }
.color-blue { color: var(--primary); }
.color-yellow { color: var(--primary-yellow); }

/* --- STAGGERED HERO TEXT ANIMATION --- */
.staggered-reveal #hero-tagline, .staggered-reveal #hero-subtitle { opacity: 0; }
.staggered-reveal #hero-title .color-blue, .staggered-reveal #hero-title .color-yellow { opacity: 0; display: inline-block; }

@keyframes textSlideUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.staggered-reveal.active #hero-tagline { animation: textSlideUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards; animation-delay: 0.1s; }
.staggered-reveal.active #hero-title .color-blue { animation: textSlideUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards; animation-delay: 0.3s; }
.staggered-reveal.active #hero-title .color-yellow { animation: textSlideUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards; animation-delay: 0.5s; }
.staggered-reveal.active #hero-subtitle { animation: textSlideUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards; animation-delay: 0.7s; }

.staggered-reveal.active #hero-title span { transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), text-shadow 0.4s ease; cursor: default; }
.staggered-reveal.active #hero-title span:hover { transform: scale(1.05) translateY(-5px); text-shadow: 0 15px 25px rgba(0,0,0,0.1); }

.hero-slideshow-side {
    position: relative;
    width: 100%;
    height: 480px; 
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(65, 74, 92, 0.15); 
    border: 6px solid var(--white); 
}

.slideshow-container { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease-in-out, transform 8s linear; transform: scale(1); }
.slide.active { opacity: 1; transform: scale(1.04); }
.hero-overlay { position: absolute; inset: 0; background: rgba(26, 29, 36, 0.05); z-index: 2; }


/* --- SCROLL ANIMATIONS --- */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out; }
.reveal-delay { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out 0.2s; }
.reveal-delay-2 { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out 0.4s; }
.reveal.active, .reveal-delay.active, .reveal-delay-2.active { opacity: 1; transform: translateY(0); }

/* Typography & Layouts */
.section-title { font-size: clamp(2rem, 4vw, 2.5rem); margin-bottom: 20px; color: var(--dark); line-height: 1.2; }

#acc-title span { color: var(--primary); }          
#souv-title span { color: var(--primary-yellow); }   
#visit-title span { color: var(--primary-orange); }  

#greek-title { color: var(--greek-blue); }
#greek-title span { background-color: var(--greek-blue); color: var(--white); padding: 2px 14px; border-radius: 8px; display: inline-block; box-shadow: 0 4px 10px rgba(0, 90, 156, 0.15); }

.section-subtitle { max-width: 650px; margin: 0 auto 40px auto; font-size: 1.1rem; }
.text-content p { font-size: 1.05rem; margin-bottom: 25px; line-height: 1.7; }

/* Lists */
.souvenir-list { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.souvenir-list li { font-weight: 600; color: var(--dark); display: flex; align-items: flex-start; }
.souvenir-list li span { padding-top: 2px; line-height: 1.4; } 

#acc-li-1 i { color: var(--primary-purple); margin-right: 15px; font-size: 1.2rem; min-width: 20px; text-align: center; }
#acc-li-2 i { color: var(--primary); margin-right: 15px; font-size: 1.2rem; min-width: 20px; text-align: center; }
#acc-li-3 i { color: var(--primary-orange); margin-right: 15px; font-size: 1.2rem; min-width: 20px; text-align: center; }
#acc-li-4 i { color: var(--primary-yellow); margin-right: 15px; font-size: 1.2rem; min-width: 20px; text-align: center; }

#li-1 i { color: var(--primary-purple); margin-right: 15px; font-size: 1.2rem; min-width: 20px; text-align: center; }
#li-2 i { color: var(--primary); margin-right: 15px; font-size: 1.2rem; min-width: 20px; text-align: center; }
#li-3 i { color: var(--primary-orange); margin-right: 15px; font-size: 1.2rem; min-width: 20px; text-align: center; }

#greek-li-1 i { color: var(--primary-green); margin-right: 15px; font-size: 1.2rem; min-width: 20px; text-align: center; }
#greek-li-2 i { color: var(--primary-orange); margin-right: 15px; font-size: 1.2rem; min-width: 20px; text-align: center; }
#greek-li-3 i { color: var(--primary); margin-right: 15px; font-size: 1.2rem; min-width: 20px; text-align: center; }

/* Contact Section */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; margin-top: 40px; }
.info-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
.info-item i { background: var(--primary-orange); color: white; width: 45px; height: 45px; min-width: 45px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1.2rem; box-shadow: 0 4px 10px rgba(255, 121, 63, 0.2); }
.info-text h4 { font-size: 1.1rem; color: var(--dark); margin-bottom: 5px; font-weight: 700; }
.info-text p { font-size: 1rem; line-height: 1.5; font-weight: 500; }

.payment-methods { margin-top: 20px; padding-top: 20px; border-top: 1px dashed #ddd; }
#pay-text { font-size: 0.85rem; font-weight: 600; color: #888; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.payment-methods .pay-icons { display: flex; gap: 12px; align-items: center; color: #a0a5b1; font-size: 2rem; }
.payment-methods .pay-icons i { transition: var(--transition); }
.payment-methods .pay-icons i:hover { color: var(--primary); }

/* Common Sections */
.container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }
.section { padding: 80px 0; }
.bg-light { background-color: var(--bg-alt); border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; } 
.grid-2, .grid-2-rev { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

/* --- INTERACTIVE SECTION SLIDERS --- */
.section-slider {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}
.slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.section-slider .slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease-in-out, transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.section-slider .slide-img.active-slide {
    opacity: 1;
    z-index: 2;
}

.section-slider:hover .slide-img.active-slide {
    transform: scale(1.05);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.slider-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}
.prev-btn { left: 15px; }
.next-btn { right: 15px; }

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: var(--transition);
}
.slider-dots .dot.active {
    background: var(--white);
    transform: scale(1.2);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.img-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 90, 156, 0.35); 
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    opacity: 0;
    transition: var(--transition);
    border-radius: 20px;
    z-index: 5; 
}
.section-slider:hover .img-hover-overlay {
    opacity: 1;
}

/* Ο χάρτης έχει πλέον width: 100% για να μην "σπάει" την οθόνη του κινητού */
.map-container { width: 100%; aspect-ratio: 16 / 9; min-height: 350px; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Footer */
footer { 
    background-color: var(--bg-alt); 
    color: var(--text); 
    padding: 40px 0 20px 0; 
    border-top: 1px solid #e2e8f0; 
}
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 25px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer-logo { display: flex; align-items: center; justify-content: center; }
.footer-logo-img { height: 65px; width: auto; display: block; opacity: 0.95; }
.footer-socials { display: flex; gap: 20px; margin: 2px 0; }
.footer-socials a { color: var(--text); opacity: 0.7; font-size: 1.25rem; transition: var(--transition); display: inline-block; }
.footer-socials a:hover { opacity: 1; transform: translateY(-2px); }
.footer-divider { width: 100%; max-width: 100px; height: 1px; background: #cbd5e1; margin: 8px 0; }
.footer-bottom { font-size: 0.75rem; font-weight: 500; color: #94a3b8; letter-spacing: 0.5px; text-align: center; }

/* Privacy Policy Link style */
.privacy-btn {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
    transition: var(--transition);
}
.privacy-btn:hover {
    color: var(--primary);
}

/* ========================================================
   RESPONSIVE DESIGN (TABLETS & PHONES) 
======================================================== */

/* TABLET & MOBILE VIEW (992px) */
@media (max-width: 992px) {
    .grid-2, .grid-2-rev { 
        display: flex; 
        flex-direction: column; 
        gap: 40px; 
    }
    
    .text-content { 
        order: 1; 
        text-align: center; 
    }
    
    .image-container { 
        order: 2; 
        width: 100%;
    }
    
    .souvenir-list li { 
        justify-content: center; 
        text-align: left; 
    }

    /* Βεβαιωνόμαστε ότι το contact-wrapper χρησιμοποιεί flex και 100% width στα κινητά */
    .contact-wrapper { 
        display: flex; 
        flex-direction: column; 
        gap: 40px; 
        width: 100%;
    }
    .contact-info { order: 1; width: 100%; }
    .map-container { order: 2; width: 100%; }

    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-text-side { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .hero-slideshow-side { height: 380px; max-width: 800px; margin: 0 auto; } 
    
    .slider-btn {
        width: 36px;
        height: 36px;
    }
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
}

/* MOBILE (850px) - PREMIUM FULL-SCREEN OVERLAY MENU */
@media (max-width: 850px) {
    header { height: 75px; padding: 0; background: transparent; box-shadow: none; }
    header.scrolled { height: 65px; background: rgba(255, 255, 255, 0.96); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); }
    
    .header-container { display: grid; grid-template-columns: 1fr 1fr; align-items: center; width: 100%; padding: 0 20px; }
    .logo { justify-self: start; }
    .logo-img { height: 50px; } 
    header.scrolled .logo-img { height: 42px; }
    .mobile-menu-btn { display: block; justify-self: end; font-size: 1.6rem; cursor: pointer; color: var(--dark); }
    
    /* ΝΕΟ FULL SCREEN BLURRED OVERLAY MENU */
    .nav-links {
        display: none !important; 
        flex-direction: column; 
        position: fixed; 
        top: 0; 
        left: 0; 
        width: 100vw; 
        height: 100vh; 
        background: var(--bg-main); 
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 110px 30px 40px 30px; 
        gap: 15px; 
        justify-content: flex-start;
        align-items: center;
        z-index: 999;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease;
        opacity: 0;
    }
    header.scrolled .nav-links { top: 0; }
    .nav-links.active { display: flex !important; transform: translateY(0); opacity: 1; }
    .nav-links li { width: auto; text-align: center; border-bottom: none; }
    .nav-links a { display: block; padding: 10px 0; font-size: 1.35rem !important; }
    
    .btn-nav { margin: 15px auto; width: 180px !important; border-radius: 50px; text-align: center; }
    
    .lang-switcher { border: none; padding: 0; justify-content: center; background: transparent; width: auto; margin-top: auto; padding-bottom: 30px; }

    .hero { padding-top: 100px; padding-bottom: 40px; }
    .hero-slideshow-side { height: 320px; border-radius: 18px; } 
}

/* SMALL MOBILE (600px) */
@media (max-width: 600px) {
    .section { padding: 60px 0; }
    .info-item { display: flex; flex-direction: row; align-items: center; text-align: left; padding: 0 10px; }
    .payment-methods { text-align: center; }
    .pay-icons { justify-content: center; }
}

/* --- COOKIE BANNER --- */
.cookie-banner { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(0); width: calc(100% - 60px); max-width: 950px; background: rgba(26, 29, 36, 0.96); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.08); color: var(--white); padding: 16px 28px; border-radius: 16px; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3); z-index: 10001; display: flex; transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease; opacity: 1; }
.cookie-banner.hidden { opacity: 0; transform: translateX(-50%) translateY(100px); pointer-events: none; }
.cookie-content { display: flex; width: 100%; justify-content: space-between; align-items: center; gap: 20px; }
.cookie-content p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.85); line-height: 1.5; }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept, .btn-cookie-decline { padding: 8px 18px; font-size: 0.8rem; font-weight: 600; border-radius: 30px; cursor: pointer; transition: var(--transition); border: none; text-transform: uppercase; }
.btn-cookie-accept { background: var(--primary); color: white; box-shadow: 0 4px 15px rgba(0, 168, 255, 0.3); }
.btn-cookie-accept:hover { background: #ff6b81; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 168, 255, 0.4); }
.btn-cookie-decline { background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.8); border: 1px solid rgba(255, 255, 255, 0.1); }
.btn-cookie-decline:hover { background: rgba(255, 255, 255, 0.15); color: white; transform: translateY(-2px); }

@media (max-width: 600px) {
    .cookie-banner { bottom: 20px; width: calc(100% - 30px); padding: 20px; border-radius: 20px; }
    .cookie-content { flex-direction: column; text-align: center; gap: 15px; }
    .cookie-buttons { width: 100%; flex-direction: column; gap: 10px; }
    .btn-cookie-accept, .btn-cookie-decline { width: 100%; padding: 12px; text-align: center; }
}

.lightbox-modal { display: none; position: fixed; z-index: 99999; padding-top: 100px; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(26, 29, 36, 0.95); backdrop-filter: blur(10px); transition: opacity 0.3s ease; }
.lightbox-content { margin: auto; display: block; width: 80%; max-width: 850px; border-radius: 16px; border: 4px solid var(--white); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); animation-name: zoomIn; animation-duration: 0.4s; transition: var(--transition); }
@keyframes zoomIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox-close { position: absolute; top: 40px; right: 40px; color: var(--white); font-size: 40px; font-weight: bold; transition: var(--transition); cursor: pointer; }
.lightbox-close:hover { color: var(--primary); transform: scale(1.1); }
#lightbox-caption { margin: auto; display: block; width: 80%; max-width: 700px; text-align: center; color: var(--white); padding: 20px 0; font-weight: 600; font-size: 1.1rem; }
@media (max-width: 768px) { .lightbox-content { width: 92%; } .lightbox-close { top: 20px; right: 20px; } }

/* --- INTERACTIVE PRIVACY POLICY MODAL --- */
.privacy-modal-box {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(26, 29, 36, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding-top: 80px;
}
.privacy-modal-content {
    background-color: var(--white);
    margin: auto;
    padding: 40px;
    border: 1px solid #e2e8f0;
    width: 90%;
    max-width: 700px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    animation: slideDown 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.privacy-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--text);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}
.privacy-modal-close:hover {
    color: var(--primary);
}
.privacy-modal-text {
    max-height: 400px;
    overflow-y: auto;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 20px;
    color: var(--text);
    padding-right: 10px;
}
.privacy-modal-text h3 {
    font-size: 1.05rem;
    color: var(--dark);
    margin: 20px 0 8px 0;
    font-weight: 700;
}
.privacy-modal-text p {
    margin-bottom: 12px;
}
.privacy-modal-text ul {
    margin: 10px 0 15px 20px;
}
.privacy-modal-text li {
    margin-bottom: 6px;
}
/* Custom scrollbar for policy text */
.privacy-modal-text::-webkit-scrollbar {
    width: 6px;
}
.privacy-modal-text::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 4px;
}
@media (max-width: 768px) {
    .privacy-modal-content { padding: 30px 20px; width: 92%; }
}