/* =========================================================
   TERMS & CONDITIONS – STYLE
========================================================= */

body {
    background: #f4f6f9;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* HEADER */
.terms-header {
    background: linear-gradient(90deg, #0b5cff, #0039a6);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.terms-header h1 {
    font-size: 34px;
    font-weight: 700;
}

.terms-header p {
    margin-top: 8px;
    font-size: 15px;
    opacity: 0.9;
}

/* CONTENT */
.terms-content {
    padding: 50px 0;
}

.terms-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 22px 25px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    animation: fadeUp 0.5s ease;
}

.terms-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0b5cff;
    margin-bottom: 10px;
}

.terms-box p,
.terms-box li {
    font-size: 14.5px;
    color: #333;
    line-height: 1.7;
}

.terms-box ul {
    padding-left: 18px;
}

/* ACCEPT BOX */
.accept-box {
    margin-top: 30px;
    padding: 25px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.accept-box label {
    font-size: 15px;
    font-weight: 500;
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}