/* Contact Us Page Styles */

/* 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-text {
    line-height: 1.6;
    color: #666;
}

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

/* Contact Form Section */
.contact-form-section {
    margin-top: 40px;
}

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