/* Terms and Conditions Page Styles */

.terms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: var(--bg-color, #0f1419);
    color: var(--text-color, #e0e0e0);
    min-height: calc(100vh - 160px);
}

.terms-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--accent-color, #3498db);
}

.terms-header h1 {
    color: var(--primary-color, #ffffff);
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.terms-header h1 i {
    color: var(--accent-color, #3498db);
}

.last-updated {
    color: var(--muted-color, #95a5a6);
    font-size: 0.9rem;
    font-style: italic;
}

.terms-content {
    background: var(--card-bg, #1a1f29);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.terms-intro {
    background: var(--accent-light, rgba(52, 152, 219, 0.1));
    border-left: 4px solid var(--accent-color, #3498db);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.terms-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.terms-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color, #2c3e50);
}

.terms-section:last-of-type {
    border-bottom: none;
}

.terms-section h2 {
    color: var(--primary-color, #ffffff);
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-number {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: var(--accent-color, #3498db);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-size: 0.9rem;
    margin-right: 10px;
}

.terms-section p {
    color: var(--text-color, #bdc3c7);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.prohibited-list {
    list-style-type: none;
    padding: 0;
    margin: 15px 0 0 20px;
}

.prohibited-list li {
    position: relative;
    padding: 8px 0 8px 30px;
    color: var(--text-color, #bdc3c7);
    line-height: 1.6;
}

.prohibited-list li:before {
    content: "•";
    color: var(--accent-color, #3498db);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 5px;
}

.terms-acknowledgement {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--accent-color, #3498db);
}

.acknowledgement-box {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(41, 128, 185, 0.1));
    border: 1px solid var(--accent-color, #3498db);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
}

.acknowledgement-box h3 {
    color: var(--primary-color, #ffffff);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.acknowledgement-box h3 i {
    color: #2ecc71;
}

.acknowledgement-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Link Styles */
.terms-content a {
    color: var(--accent-color, #3498db);
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-content a:hover {
    color: var(--accent-hover, #2980b9);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-container {
        padding: 20px 15px;
    }
    
    .terms-content {
        padding: 25px 20px;
    }
    
    .terms-header h1 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
    
    .terms-intro p,
    .terms-section p,
    .prohibited-list li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .terms-container {
        padding: 15px 10px;
    }
    
    .terms-content {
        padding: 20px 15px;
    }
    
    .terms-header h1 {
        font-size: 1.5rem;
    }
    
    .section-number {
        width: 28px;
        height: 28px;
        line-height: 28px;
        font-size: 0.8rem;
    }
}