/* Contact Page Styles */
.contact-page-title {
    text-align: center;
    margin: 30px 0;
    font-size: 2.2rem;
    color: #333;
    position: relative;
}

.contact-page-title {
    text-align: center;
    margin: 40px 0;
    color: #333;
    font-size: 2.5rem;
}

.contact-page-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1500px;
    margin: 0 auto 20px;
}

.contact-info-section, .contact-map-section {
    flex: 1;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.contact-info-section h2, .contact-map-section h2{
    color: #3E4095;
    margin-bottom: 25px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 10px;
}

.contact-info-section h2:after, .contact-map-section h2:after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #3E4095;
    border-radius: 2px;
}

.contact-info-block {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-info-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-block p {
    margin: 8px 0;
    line-height: 1.6;
    color: #333;
}

.contact-info-block strong {
    color: #000;
    font-weight: 600;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    height: 450px;
}

@media (max-width: 768px) {
    .contact-page-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info-section, 
    .contact-map-section {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0px;
        border-radius: 15px;
    }
    
    .contact-info-section h2, 
    .contact-map-section h2 {
        font-size: 1.4rem;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .contact-info-section h2:after, 
    .contact-map-section h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-info-block {
        text-align: center;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .contact-info-block p {
        font-size: 0.9rem;
        margin: 5px 0;
    }
    
    .map-container {
        height: 300px;
    }
    
    .google-form {
        padding: 15px;
    }
    
    .contact-page-title {
        font-size: 1.6rem;
        margin: 20px 0;
    }
    
    .contact-page-title:after {
        width: 60px;
    }
}
/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
