﻿/* ================= TERMS PAGE ================= */

.terms-section {
    background: #f9f9f9;
}

/* Each section box */
.terms-box {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: 0.3s;
}

    .terms-box:hover {
        box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    }

    /* Headings */
    .terms-box h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #222;
        border-left: 4px solid #ff6a00;
        padding-left: 10px;
    }

    .terms-box h4 {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 10px;
        color: #444;
    }

    /* Paragraph */
    .terms-box p {
        font-size: 15px;
        color: #555;
        line-height: 1.7;
    }

    /* List */
    .terms-box ul {
        padding-left: 20px;
    }

        .terms-box ul li {
            font-size: 15px;
            margin-bottom: 8px;
            color: #555;
            line-height: 1.6;
        }

/* Alerts */
.alert {
    margin-top: 15px;
    padding: 15px;
    border-radius: 6px;
    font-size: 14px;
}

.alert-danger {
    background-color: #ffe5e5;
    color: #c0392b;
    border-left: 5px solid #e74c3c;
}

.alert-warning {
    background-color: #fff4e5;
    color: #e67e22;
    border-left: 5px solid #f39c12;
}

.alert-info {
    background-color: #e6f4ff;
    color: #2980b9;
    border-left: 5px solid #3498db;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-box {
        padding: 20px;
    }

        .terms-box h3 {
            font-size: 18px;
        }
}
