/* Cancellation & Refund Policy Redesign */
.cancellation-page {
    background: #fdfdfd;
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 80px;
    color: #444;
}

/* Same Hero Breadcrumb for consistency */
.hero-breadcrumb {
    background: linear-gradient(rgba(39, 49, 99, 0.94), rgba(39, 49, 99, 0.98)), url('../images/cancellation-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 120px;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-breadcrumb h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-list a {
    color: #D4AF37;
    text-decoration: none;
}

.policy-container {
    max-width: 1200px;
    margin: -60px auto 0;
    position: relative;
    z-index: 10;
}

.policy-layout {
    display: flex;
    gap: 40px;
}

/* Sidebar Toc */
.policy-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.toc-sticky {
    position: sticky;
    top: 100px;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.toc-sticky h4 {
    font-family: 'Playfair Display', serif;
    color: #273163;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #D4AF37;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li { margin-bottom: 10px; }

.toc-list a {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: 0.3s;
    display: block;
}

.toc-list a:hover, .toc-list a.active {
    color: #D4AF37;
    padding-left: 5px;
}

/* Content Area */
.policy-content {
    flex-grow: 1;
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.intro-highlight {
    background: rgba(39, 49, 99, 0.03);
    border: 2px solid #273163;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 50px;
    text-align: center;
    color: #273163;
    font-weight: 500;
}

/* Sections */
.policy-section {
    margin-bottom: 60px;
    scroll-margin-top: 120px;
}

.policy-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #273163;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.policy-section h3 span {
    color: #D4AF37;
    font-weight: 800;
    font-size: 1.1rem;
}

.policy-section p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Icon List */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.icon-box {
    display: flex;
    gap: 20px;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.icon-box i {
    font-size: 28px;
    color: #D4AF37;
}

.icon-box h5 {
    color: #273163;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 1.1rem;
}

.icon-box p { margin-bottom: 0; font-size: 0.9rem; }

/* Info Alert */
.info-alert {
    background: #fef9e7;
    border-left: 4px solid #f1c40f;
    padding: 20px;
    border-radius: 0 10px 10px 0;
    margin: 20px 0;
    display: flex;
    gap: 15px;
}

.info-alert i { color: #f1c40f; font-size: 20px; }

/* Divider */
.policy-divider {
    height: 1px;
    background: linear-gradient(to right, #D4AF37, transparent);
    margin: 40px 0;
    opacity: 0.2;
}

/* Responsive */
@media (max-width: 991px) {
    .policy-layout { flex-direction: column; }
    .policy-sidebar { display: none; }
    .policy-content { padding: 30px; }
    .icon-grid { grid-template-columns: 1fr; }
}
