/* Terms Page Styles */

.terms-section {
    padding: 80px 0;
    min-height: calc(100vh - 200px);
    background: #f8f9fa;
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.terms-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    text-align: center;
}

.terms-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #666666;
    margin-bottom: 40px;
    text-align: center;
}

.terms-content {
    line-height: 1.8;
    color: #333333;
}

.terms-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 20px;
}

.terms-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-top: 30px;
    margin-bottom: 15px;
}

.terms-content p {
    font-size: 16px;
    margin-bottom: 15px;
    text-align: justify;
}

.terms-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.terms-content li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.terms-content strong {
    font-weight: 600;
    color: #000000;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-section {
        padding: 40px 0;
    }
    
    .terms-container {
        padding: 20px;
        margin: 0 15px;
    }
    
    .terms-title {
        font-size: 28px;
    }
    
    .terms-subtitle {
        font-size: 18px;
    }
    
    .terms-content h3 {
        font-size: 20px;
    }
    
    .terms-content h4 {
        font-size: 18px;
    }
    
    .terms-content p,
    .terms-content li {
        font-size: 14px;
    }
}
