/* ===== TERMS & CONDITIONS PAGE STYLES ===== */
.terms-container {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 0 20px;
}

.terms-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.terms-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.terms-header p {
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.terms-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.terms-intro {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray);
}

.terms-intro h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.terms-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
}

.terms-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    height: 20px;
    width: 5px;
    background-color: var(--primary);
    border-radius: 3px;
}

.terms-section p, 
.terms-section ul {
    margin-bottom: 15px;
    line-height: 1.7;
}

.terms-section ul {
    padding-left: 20px;
}

.terms-section li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.terms-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.terms-section strong {
    color: var(--primary-dark);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .terms-header {
        padding: 40px 20px;
    }
    
    .terms-header h1 {
        font-size: 2rem;
    }
    
    .terms-intro h2 {
        font-size: 1.5rem;
    }
    
    .terms-section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .terms-header h1 {
        font-size: 1.8rem;
    }
    
    .terms-intro h2 {
        font-size: 1.3rem;
    }
    
    .terms-section {
        margin-bottom: 30px;
    }
}