/* GLOBAL */
body{
    margin:0;
    background:#fff;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1100px;
    margin:auto;
}

section{
    padding:50px 0 30px;
}

h1,h2,h3{
    font-weight:600;
}

/* HERO SECTION */
.privacy-hero-section{
    min-height:60vh;
    display:flex;
    align-items:center;
    background:linear-gradient(120deg,#000038,#001a6e,#000038);
    background-size:200% 200%;
    animation:gradientMove 12s ease infinite;
    color:#fff;
}

@keyframes gradientMove{
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}

.privacy-hero-section h1{
    font-size:52px;
    margin:0;
}

.subtitle{
    margin-top:15px;
    opacity:.85;
}

/* HERO INNER */
.hero-inner{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

/* READ MORE BUTTON */
.hero-scroll{
    margin-top:40px;
}

/* READ MORE BUTTON */
.read-more-btn{
    border-radius: 25px;
    background:#f58220;
    border:none;
    color:#fff;
    padding:14px 28px;
    font-size:15px;
    cursor:pointer;
    letter-spacing:.5px;
    transition:.3s;

    /* PULSE ANIMATION */
    animation:pulseGlow 2.2s infinite;
}

/* HOVER */
.read-more-btn:hover{
    background:#ff9d3c;
    transform:translateY(-2px);
}

/* PULSE + GLOW */
@keyframes pulseGlow{
    0%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(245,130,32,0.6);
    }
    50%{
        transform:scale(1.05);
        box-shadow:0 0 20px 8px rgba(245,130,32,0.15);
    }
    100%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(245,130,32,0);
    }
}


/* DOWN ARROW */
/* READ MORE BUTTON */
.read-more-btn{
    background:#f58220;
    border:none;
    color:#fff;
    padding:14px 28px;
    font-size:15px;
    cursor:pointer;
    letter-spacing:.5px;
    transition:.3s;

    /* PULSE ANIMATION */
    animation:pulseGlow 2.2s infinite;
}

/* HOVER */
.read-more-btn:hover{
    background:#ff9d3c;
    transform:translateY(-2px);
}

/* PULSE + GLOW */
@keyframes pulseGlow{
    0%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(245,130,32,0.6);
    }
    50%{
        transform:scale(1.05);
        box-shadow:0 0 20px 8px rgba(245,130,32,0.15);
    }
    100%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(245,130,32,0);
    }
}

/* INTRO SECTION */
.privacy-intro-section .lead{
    font-weight:600;
    color:#000038;
}

.highlight{
    font-weight:600;
}

/* SECTION TITLES */
.section-title{
    font-size:34px;
    color:#000038;
    margin-bottom:40px;
    position:relative;
}

.section-title:after{
    content:"";
    width:60px;
    height:3px;
    background:#f58220;
    position:absolute;
    left:0;
    bottom:-12px;
}

/* INTRO BULLETS FIX */
.intro-bullets{
    margin-top:15px;
    padding-left:22px;
    list-style:disc;          /* show bullets */
}

.intro-bullets li{
    margin-bottom:10px;
    display:list-item;        /* ensure bullet shows */
}

/* POLICIES SECTION (DESIGN KEPT SAME) */
.policy-item{
    display:flex;
    gap:25px;
    margin-bottom:30px;
    padding:25px;
    border:1px solid #eee;
    border-left:4px solid #000038;
    transition:.3s;
}

.policy-item:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.policy-number{
    font-size:28px;
    font-weight:700;
    color:#f58220;
    min-width:40px;
}

.policy-content h3{
    margin:0 0 8px;
    color:#000038;
}

/* Highlight inside description */
.highlight-text{
    color:#000038;
    font-weight:700;
}

/* PDF Link */
.policy-pdf-link{
    display:inline-block;
    margin-top:12px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    color:#f58220;
    transition:.3s;
}

.policy-pdf-link i{
    margin-left:6px;
}

.policy-pdf-link:hover{
    color:#000038;
}

/* FADE */
.fade{
    opacity:0;
    transform:translateY(40px);
    transition:1s;
}

.fade.show{
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:768px){

.privacy-hero-section h1{
    font-size:34px;
}

.section-title{
    font-size:26px;
}

.policy-item{
    flex-direction:column;
}

}

/* Hero Section Responsive */
@media (max-width:1200px) {
    .privacy-hero-section h1{
        font-size:46px;
    }

    .subtitle{
        font-size:16px;
    }

    .read-more-btn{
        padding:12px 24px;
        font-size:14px;
    }
}

@media (max-width:992px) {
    .privacy-hero-section{
        min-height:50vh;
        padding:50px 20px;
    }

    .privacy-hero-section h1{
        font-size:38px;
    }

    .hero-inner{
        align-items:center; /* center on smaller screens */
        text-align:center;
    }

    .read-more-btn{
        font-size:13px;
        padding:10px 20px;
    }

    .down-arrow{
        font-size:20px;
    }
}

@media (max-width:768px){
    .privacy-hero-section h1{
        font-size:30px;
    }

    .subtitle{
        font-size:14px;
    }

    .hero-inner{
        align-items:center;
    }
}

/* Intro Section Responsive */
@media (max-width:992px){
    .privacy-intro-section{
        padding:60px 20px;
    }

    .section-title{
        font-size:28px;
    }

    .lead{
        font-size:15px;
    }

    .intro-bullets li{
        font-size:14px;
    }
}

@media (max-width:768px){
    .privacy-intro-section{
        padding:50px 15px;
    }

    .section-title{
        font-size:24px;
    }

    .lead{
        font-size:14px;
    }

    .intro-bullets li{
        font-size:13px;
    }
}

/* Policies Section Responsive */
@media (max-width:992px){
    .privacy-policies-section{
        padding:60px 20px;
    }

    .section-title{
        font-size:28px;
    }

    .policy-item{
        flex-direction:column;
        padding:20px;
    }

    .policy-number{
        font-size:24px;
        margin-bottom:10px;
    }

    .policy-content h3{
        font-size:20px;
    }

    .policy-pdf-link{
        font-size:13px;
    }
}

@media (max-width:768px){
    .privacy-policies-section{
        padding:50px 15px;
    }

    .section-title{
        font-size:24px;
    }

    .policy-item{
        padding:18px;
    }

    .policy-number{
        font-size:22px;
    }

    .policy-content h3{
        font-size:18px;
    }

    .policy-pdf-link{
        font-size:12px;
    }
}
