/* Start of terms.css */

/* --- Base Styles Imported from Info Page --- */
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    transition: 0.3s;
    padding-top: 120px;
    padding-bottom: 120px;
}

body.light-mode {
    background: linear-gradient(135deg, #8ee7dc, #50bdb1);
    color: #fff;
}

body.dark-mode {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #e8e8e8;
}

/* Navbar and glass-card styles (omitted for brevity, assume they are included) */

.container {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.glass-card {
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

body.light-mode .glass-card {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

body.dark-mode .glass-card {
    background: rgba(255, 255, 255, 0.07);
    color: #e8e8e8;
}
/* --- End of Imported Styles --- */


/* --- New Styles for T&C Page --- */

.terms-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    color: inherit;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.terms-header p {
    text-align: center;
    opacity: 0.8;
    margin-bottom: 40px;
    font-style: italic;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid #4c8bff; /* Highlight */
    padding-left: 15px;
}

.term-list {
    list-style: none;
    padding-left: 0;
}

.term-item {
    margin-bottom: 25px;
    padding: 15px;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.term-item strong {
    color: #27ae60; /* Highlight key terms */
    font-weight: 700;
}

.sub-point {
    margin-top: 10px;
    padding-left: 15px;
    border-left: 1px dashed rgba(255, 255, 255, 0.1);
}

/* Specific highlight for Nigerian context */
.nigeria-focus {
    color: #ffd700; /* Gold color */
    font-weight: 600;
}