/* ================= HERO ================= */

.hero {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content h1 {
    color: #fff;
    font-size: 64px;
    font-weight: 900;
}


/* ================= BREADCRUMB ================= */

.breadcrumb {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.breadcrumb .container {
    display: flex;
    gap: 10px;
}

.breadcrumb a {
    color: #6b21a8;
    text-decoration: none;
}

.sep {
    color: #6b21a8;
}

.current {
    color: #6b21a8;
}


.hero {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 100%;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 22px;
    font-weight: 400;
    max-width: 800px;
    margin: auto;
    line-height: 1.6;
}

@media(max-width:768px){

.hero-content h1{
    font-size:38px;
}

.hero-content p{
    font-size:16px;
    padding:0 20px;
}

.hero{
    height:320px;
}

}

.breadcrumb {
    background: #f3f4f6;
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-container{
    max-width:1200px;
    margin:0 auto;
    padding:0 40px;   /* left-right spacing */
    display:flex;
    align-items:center;
    gap:8px;
    font-size:16px;
}

.breadcrumb a{
    color:#6b21a8;
    text-decoration:none;
}

.breadcrumb a:hover{
    text-decoration:underline;
}

.sep{
    color:#6b21a8;
}

.current{
    color:#6b21a8;
}


.policies-section{
padding:60px 0;
text-align:center;
}

.policy-title{
font-size:40px;
font-weight:900;
}

.policy-title span{
color:#e63946;
}

.policy-sub{
margin-top:10px;
margin-bottom:30px;
color:#555;
}


/* TABS */

.policy-tabs{
display:flex;
justify-content:center;
gap:12px;
flex-wrap:wrap;
margin-bottom:30px;
}

.tab{
border:none;
background:#f1f1f1;
padding:10px 18px;
border-radius:20px;
font-weight:600;
cursor:pointer;
}

.tab.active{
background:#e63946;
color:white;
}


/* PANELS */

.tab-panel{
display:none;
text-align:left;
}

.tab-panel.active{
display:block;
}


/* PDF */

iframe{
border:none;
border-radius:6px;
}


/* BUTTON */

.fullscreen-btn{
background:#2b6cb0;
color:white;
padding:10px 16px;
border:none;
border-radius:6px;
margin-bottom:10px;
cursor:pointer;
}

/* POLICY DOCUMENT STYLE */

.policy-document{
max-width:1000px;
margin:40px auto;
text-align:left;
line-height:1.9;
font-size:16px;
color:#444;
}

.policy-doc-title{
font-size:22px;
font-weight:700;
margin-bottom:20px;
color:#333;
}

.policy-breadcrumb{
color:#555;
margin-bottom:25px;
font-size:16px;
}

.policy-document p{
margin-bottom:22px;
}

.policy-document{
max-width:1000px;
margin:40px auto;
text-align:left;
line-height:1.9;
font-size:16px;
color:#444;
}

.policy-doc-title{
font-size:22px;
font-weight:700;
margin-bottom:20px;
color:#333;
}

.policy-breadcrumb{
color:#555;
margin-bottom:25px;
font-size:16px;
}

.policy-document p{
margin-bottom:22px;
}

.policy-tabs{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:14px;
margin-top:30px;
}

.tab{
display:flex;
align-items:center;
gap:8px;
padding:10px 18px;
border-radius:22px;
border:none;
background:#f3f4f6;
font-weight:600;
cursor:pointer;
color:#333;
font-size:15px;
transition:0.3s;
}

.tab i{
font-size:14px;
}

.tab:hover{
background:#e5e7eb;
}

.tab.active{
background:#e63946;
color:white;
}