/* Contact Section */
.contact_container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact_info {
    flex: 1;
    min-width: 300px;
}

.contact_info-heading {
    color: var(--green);
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact_info-heading:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--yellow);
    bottom: 0;
    left: 0;
}

.contact_item {
    display: flex;
    margin-bottom: 25px;
}

.contact_icon {
    font-size: 1.5rem;
    color: var(--green);
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.contact_label {
    color: var(--green);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact_value, .contact_link {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact_link:hover {
    color: var(--green);
}

.contact_hours {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.hours_heading {
    color: var(--green);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact_map {
    flex: 1;
    min-width: 300px;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact_image {
    flex: 1;
    min-width: 300px;
    height: fit-content;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map_iframe {
    width: 100%;
    height: 100%;
    border: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact_container {
        flex-direction: column;
    }
    
    .contact_map {
        height: 350px;
    }
    
    .contact_info-heading {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact_section {
        padding: 60px 15px;
    }
    
    .contact_item {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact_icon {
        margin-right: 0;
        margin-bottom: 5px;
    }
}