.appointment-header {
    text-align: center;
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
}
.appointment-header h2{
    color: var(--primary-color);
}
.appointment-header p {
    color: black;
}
/* Locations Section */
.locations-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
        
.location-card {
    display: flex;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}
        
.location-image {
    flex: 1;
    min-width: 200px;
    max-width: 500px;
}
        
.location-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
        
.location-info {
    flex: 2;
    padding: 20px;
    display: flex;
    flex-direction: column;
}
        
.location-name {
    font-size: 1.5rem;
    color: #2f89fc;
    margin-bottom: 10px;
}
        
.location-address {
    margin-bottom: 15px;
    color: #555;
}
        
.location-phone {
    margin-bottom: 15px;
    font-weight: 500;
}
        
.location-schedule {
    margin-top: auto;
}
        
.schedule-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}
        
.schedule-days {
    color: #666;
    line-height: 1.6;
}
        
@media (max-width: 900px) {
    .contact-content {
        flex-direction: column;
    }
            
    .contact-form-section,
    .contact-locations-section {
        min-width: 100%;
    }
            
    .location-card {
        flex-direction: column;
    }
            
    .location-image {
        max-width: 100%;
        height: 200px;
    }
}