.policy-hero{
    /* Soft Blue Overlay + Customer Service Image */
    background: url('https://plus.unsplash.com/premium_photo-1661432741512-b044605fb5bb?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 320px;
     display: flex;
    align-items: center;
    justify-content: center;
}
/* Gradient overlay for readability (Vignette effect) */
.policy-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}
.policy-header{
    z-index: 3;
    max-width: 600px;
}
.policy-header h3 {
    font-size: 3rem;
    font-weight: 600;
    color: var(--white);
}

.policy-header p {
    font-size: 0.9rem;
    color: var(--white);
}



.policy-content {
    padding: 30px 6%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.policy-informations {
    max-width: 700px;
}

.policy-informations section {
    border-bottom: 2px dotted var(--brand-secondary);
    margin-bottom: 1.5rem;
}

.policy-informations section:last-child {
    border-bottom: none;
}

.policy-content h2 {
    font-size: 1.9rem;
    color: var(--brand-primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.policy-content p,
.policy-content ul {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.policy-content ul {
    padding-left: 2rem;
}

/* Sticky Sidebar */
.sticky-sidebar {
    position: sticky;
    top: 40px;
    height: fit-content;
    padding: 30px;
    background: var(--brand-primary);
    border-radius: 24px;
    border: 1px solid var(--brand-secondary);
    color: white;
}

.sticky-sidebar h4 {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: white;
    margin-bottom: 20px;
    opacity: 0.8;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-item {
    margin-bottom: 15px;
}

.toc-link {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
    display: block;
    color: whitesmoke;
}

.toc-link:hover,
.toc-link.active {
    color: var(--brand-secondary);
    padding-left: 5px;
}



 @media (max-width: 992px) {
    .policy-content{
        flex-direction: column-reverse;
        
    }
     .sticky-sidebar { display: none; } 

     .policy-header h3 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-top: 10px;
    font-weight: 600;
}
 }