/* FAQ Page Styles */

/* Under Maintenance Notice */
.maintenance-notice {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.maintenance-notice p {
    margin: 0;
    color: #856404;
    font-weight: 500;
    font-size: 16px;
}

/* Contact Page Layout */
.contact-us-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contact-us-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #333;
}

.contact-us-hero {
    text-align: center;
    margin-bottom: 40px;
}

.contact-us-hero-image {
    max-width: 100%;
    height: auto;
}

.contact-us-text {
    line-height: 1.6;
    color: #666;
}

.contact-us-text p {
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-us-page {
        padding: 20px 15px;
    }
    
    .contact-us-title {
        font-size: 2rem;
    }
    
    .maintenance-notice {
        padding: 12px 15px;
    }
    
    .maintenance-notice p {
        font-size: 14px;
    }
}