/* Contact Page Specific Styles */

/* Page Header Styles */
.page-header {
    background-color: #f2f6fa;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section Styles */
.contact-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.contact-container h2 {
    grid-column: 1 / -1;
    text-align: center;
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    height: 600px; /* Adjust this value based on your form's content */
}

.contact-form-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: #007bff;
}

.info-item p {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        height: 550px; /* Slightly reduced height for mobile */
    }

    .contact-info {
        padding: 1.5rem;
    }

    .contact-container h2 {
        font-size: 2rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form-container,
.contact-info {
    animation: fadeIn 0.5s ease-out;
}