@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800;900&display=swap');

/* --- HERO SECTION --- */
.terms-hero {
    position: relative;
    width: 100%;
    height: 400px;
    background-image: url('/assets/images/terms-conditions/1a85d60a-image-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); 
}

.terms-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) {
    .terms-hero { height: 300px; }
    .terms-hero h1 { font-size: 2.2em; }
}


/* --- CONTENT WRAPPER --- */
.content-wrapper {
    width: 100%;
    background-color: #fff;
    padding: 60px 20px 100px;
}

.terms-container {
    max-width: 1000px; 
    margin: 0 auto;
    color: #444; 
    font-family: "Playfair Display", serif;
    font-size: 16px;
    line-height: 1.8;
}


/* --- TYPOGRAPHY --- */

/* Paragraphs */
.terms-container p {
    margin-bottom: 25px;
    text-align: justify;
    color: #6b6b6b;
}

/* Headings */
.terms-container h2 {
    font-size: 32px;      
    font-weight: 600;  
    color: #000;
    margin-top: 45px;
    margin-bottom: 20px;
    letter-spacing: 1px;  
}

/* Lists */
.terms-container ul {
    margin-bottom: 25px;
    padding-left: 20px;
    list-style-type: disc;
    color: #6b6b6b;
}

.terms-container li {
    margin-bottom: 10px;
    padding-left: 10px;
    color: #6b6b6b;
}

/* Mobile Typography */
@media (max-width: 768px) {
    .content-wrapper { 
        padding: 40px 30px 60px; 
    }

    .terms-container h2 { 
        font-size: 24px; 
        margin-top: 35px; 
    }

    .terms-container p, 
    .terms-container li { 
        font-size: 15px; 
    }
}