/* terms.css - Styles for Terms and Conditions Page */

.terms-section {
    padding: 60px 0;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.terms-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    font-size: 1rem;
}

.terms-content {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.terms-intro {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
}

.terms-intro p {
    font-size: 1.1rem;
}

.terms-section {
    margin-bottom: 30px;
}

.terms-section h2 {
    font-size: 1.8rem;
    color: #004080;
    margin-bottom: 15px;
    font-weight: 600;
    padding-top: 10px;
}

.terms-section p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.terms-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.terms-section ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.terms-section ul li:before {
    content: "•";
    color: #0077cc;
    font-weight: bold;
    position: absolute;
    left: 0;
}

address {
    font-style: normal;
    margin-top: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #0077cc;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .terms-section {
        padding: 40px 0;
    }
    
    .section-header h1 {
        font-size: 2rem;
    }
    
    .terms-content {
        padding: 25px;
    }
    
    .terms-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .terms-content {
        padding: 20px 15px;
    }
    
    .section-header h1 {
        font-size: 1.8rem;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
}