/* Terms and Conditions Page Styles */

.terms-container {
    font-family: 'Poppins', Arial, sans-serif;
    color: #333;
    background: #fff;
    padding-bottom: 60px;
}

.terms-hero {
    background: #314a6d;
    color: #fff;
    padding: 60px 0 30px 0;
    text-align: center;
}

.terms-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.terms-date {
    font-size: 1rem;
    opacity: 0.85;
}

.terms-content {
    background: #fff;
    padding: 40px 0;
}

.terms-content .container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(27,54,93,0.06);
    padding: 40px 32px;
}

.terms-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #444;
}

.terms-list {
    counter-reset: section;
    list-style: none;
    padding-left: 0;
}

.terms-list > li {
    margin-bottom: 32px;
    font-size: 1.08rem;
    line-height: 1.8;
    position: relative;
    padding-left: 0;
}

.terms-list > li strong {
    color: #1B365D;
    font-size: 1.15rem;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.terms-list ul {
    margin-top: 10px;
    margin-bottom: 0;
    padding-left: 24px;
}

.terms-list ul li {
    list-style: disc;
    margin-bottom: 6px;
    font-size: 1rem;
}

.terms-footer {
    margin-top: 40px;
    text-align: center;
    color: #888;
    font-size: 1rem;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.terms-content a {
    color: #1B365D;
    text-decoration: underline;
    transition: color 0.2s;
}

.terms-content a:hover {
    color: #C9A55C;
}

@media (max-width: 600px) {
    .terms-content .container {
        padding: 20px 8px;
    }
    .terms-hero h1 {
        font-size: 1.5rem;
    }
}

[dir="rtl"] .terms-content .container {
    text-align: right;
} 