@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800;900&display=swap');

/* --- HERO SECTION --- */
.refund-hero {
    position: relative;
    width: 100%;
    height: 400px;
    background-image: url('/assets/images/refund-policy/b6eb5130-lipton_seat_2.jpg'); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); 
}

.refund-hero h1 {
    position: relative;
    font-family: "Playfair Display", serif;
    font-size: 3.5em;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    z-index: 1;
    margin: 0;
    padding: 0 20px;
}

/* Mobile Hero adjustments */
@media (max-width: 768px) {
    .refund-hero { height: 300px; }
    .refund-hero h1 { font-size: 2.2em; }
}


/* --- CONTENT WRAPPER --- */
.content-wrapper {
    width: 100%;
    background-color: #fff;
    padding: 60px 20px 100px;
}

.refund-container {
    max-width: 1000px; 
    margin: 0 auto;
    color: #6b6b6b; 
    font-family: "Playfair Display", serif;
    font-size: 16px;
    line-height: 1.8;
}


/* --- TYPOGRAPHY --- */

/* Paragraphs */
.refund-container p {
    margin-bottom: 20px;
    text-align: justify;
    color: #6b6b6b;
}

.refund-container .section-subtitle {
    color: #6b6b6b;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Headings (Refund Policy, Notes) */
.refund-container h2 {
    font-family: "Playfair Display", serif;
    font-size: 32px;      
    font-weight: 700; 
    color: #000;
    margin-top: 50px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;  
}

/* Sub-Headings (CANCELLATION BY US) */
.refund-container h3 {
    font-family: "Playfair Display", serif;
    font-size: 24px;      
    font-weight: 700; 
    color: #000;
    margin-top: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Lists */
.refund-container ul {
    margin-bottom: 25px;
    padding-left: 20px;
    list-style-type: disc;
    color: #6b6b6b;
}

.refund-container li {
    margin-bottom: 12px;
    padding-left: 10px;
    color: #6b6b6b;
    text-align: justify;
}

/* Mobile Typography */
@media (max-width: 768px) {
    .content-wrapper { 
        padding: 40px 30px 60px; 
    }

    .refund-container h2 { 
        font-size: 26px; 
        margin-top: 35px; 
    }

    .refund-container h3 { 
        font-size: 20px; 
    }

    .refund-container p, 
    .refund-container li { 
        font-size: 15px; 
    }
}