/* Legal Pages Content-Only Styles */
/* NO header/footer styling - only main content */

.legal-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    margin-top: 180px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* Ensure footer and its links are clickable */
footer.footer-section {
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

footer.footer-section a {
    pointer-events: auto;
    z-index: 3;
    position: relative;
}

.legal-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #0B4C7A;
}

.legal-header h1 {
    color: #0B4C7A;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.legal-header p {
    color: #666;
    font-size: 1.1rem;
}

.legal-section {
    margin-bottom: 30px;
}

.legal-section h2 {
    color: #0B4C7A;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    border-left: 4px solid #0B4C7A;
    padding-left: 15px;
}

.legal-section h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 10px;
    margin-top: 20px;
    font-weight: 600;
}

.legal-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-section li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

.highlight-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-left: 4px solid #0B4C7A;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.warning-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-left: 4px solid #fdcb6e;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.refund-structure {
    background: #e8f4fd;
    border: 1px solid #b3d9f7;
    border-left: 4px solid #0B4C7A;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.refund-structure h4 {
    color: #0B4C7A;
    margin-bottom: 15px;
    font-weight: 600;
}

.refund-item {
    background: white;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    border-left: 3px solid #0B4C7A;
}

.refund-item .date {
    font-weight: 600;
    color: #0B4C7A;
}

.refund-item .percentage {
    font-weight: 700;
    color: #27ae60;
    font-size: 1.1rem;
}

.no-refund {
    color: #e74c3c !important;
}

.legal-contact-info {
    background: #0B4C7A;
    color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    margin-top: 30px;
}

.legal-contact-info h3 {
    margin-bottom: 10px;
    color: white;
}

.legal-contact-info a {
    color: #FFD700;
    text-decoration: none;
}

.legal-contact-info a:hover {
    text-decoration: underline;
}

.address-section {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.address-section h4 {
    color: #0B4C7A;
    margin-bottom: 10px;
    font-weight: 600;
}

.process-steps {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.process-steps h4 {
    color: #0B4C7A;
    margin-bottom: 15px;
    font-weight: 600;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.step-number {
    background: #0B4C7A;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
}

.step-text {
    flex: 1;
    color: #555;
}

/* Responsive Design for Legal Content ONLY */
@media (max-width: 768px) {
    .legal-content {
        margin-top: 150px;
        padding: 20px 15px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .legal-header h1 {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.3rem;
    }

    .step {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-number {
        margin-bottom: 10px;
        margin-right: 0;
    }
} 