body {
    background: #f7f7f7;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Main container */
.policy-container {
    max-width: 900px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin: 80px auto 40px auto;
}

/* Title */
.policy-container h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
}

/* Section spacing */
.policy-container section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

/* Remove border last section */
.policy-container section:last-child {
    border-bottom: none;
}

/* Sub headings */
.policy-container h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

/* Paragraph */
.policy-container p {
    font-size: 14.5px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

/* Contact highlight */
.policy-container section:last-child p {
    font-weight: 500;
    color: #333;
}

/* HERO SECTION */
.terms-hero {
    width: 100%;
    height: 260px;
    background: url("../img/terms.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0;
    padding: 0;
    margin-top: 120px;
    z-index: 1;
}
.privacy-hero {
    width: 100%;
    height: 260px;
    background: url("../img/terms.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0;
    padding: 0;
    margin-top: 120px;
    z-index: 1;
}

.cs_site_header {
    z-index: 9999;
}

/* dark overlay */
.terms-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
}

/* CENTER BOX */
.terms-hero-box {
    position: relative;
    padding: 25px 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    text-align: center;
}

/* TEXT */
.terms-hero-box h1 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .terms-hero {
        height: 200px;
    }

    .terms-hero-box {
        padding: 18px 30px;
    }

    .terms-hero-box h1 {
        font-size: 24px;
    }
}
