/* PAGE BACKGROUND */
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f2f2f2;
    color: #222;
}

/* MAIN CONTAINER */
.terms-container {
    max-width: 1500px;
    margin: 40px auto;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* HEADER */
.terms-header {
    background: #ffefea;
    text-align: center;
    padding: 30px 20px;
}

    .terms-header h1 {
        margin: 0;
        font-size: 48px;
        font-weight: 600;
    }

.updated-date {
    font-size: 15px;
    color: #555;
    margin-top: 5px;
}

/* CONTENT */
.terms-content {
    padding: 30px 40px;
}

.intro {
    font-size: 30px;
    color: #444;
    margin-bottom: 25px;
}

/* SECTIONS */
.terms-content section {
    margin-bottom: 25px;
}

.terms-content h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 8px;
}

.terms-content p {
    font-size: 20px;
    color: #333;
    line-height: 1.6;
}

/* LIST */
.terms-content ul {
    padding-left: 18px;
}

.terms-content li {
    font-size: 20px;
    margin-bottom: 6px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .terms-container {
        margin: 20px;
    }

    .terms-content {
        padding: 20px;
    }

    .terms-header h1 {
        font-size: 25px;
    }

    .terms-content h3 {
        font-size: 20px;
    }

    .terms-content p,
    .terms-content li {
        font-size: 20px;
    }
}
