/* Contact Page Styles */
.contact-page-container {
    padding: 40px 0;
    font-family: 'Montserrat', sans-serif;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h3 {
    font-size: 2.5rem;
    color: #2272bc;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.contact-info-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    flex: 1;
    min-width: 300px;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-info-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #2272bc;
    padding-bottom: 10px;
    display: inline-block;
}

.contact-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-details-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    color: #444;
}

.contact-details-list li i {
    color: #2272bc;
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.contact-details-list li strong {
    color: #222;
    margin-right: 5px;
}

.contact-map-container {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 450px;
}

.contact-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-header h3 {
        font-size: 2rem;
    }
}