/* Contact Page Styles */
.general-info {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.general-info h2 {
    margin-top: 0;
    color: #2c3e50;
}

.general-info p {
    margin: 1rem 0 0 0;
    display: flex;
    align-items: flex-start;
}

.general-info i {
    margin-right: 0.75rem;
    color: #3498db;
    margin-top: 0.2rem;
}

.locations-side-by-side {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.location-column {
    flex: 1;
    min-width: 300px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.location-image {
    height: 250px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.location-column:hover .location-image img {
    transform: scale(1.05);
}

.location-content {
    padding: 1.5rem;
}

.location-content h3 {
    margin: 0 0 1rem 0;
    color: #2c3e50;
    display: flex;
    align-items: center;
}

.location-content h3 i {
    margin-right: 0.75rem;
    color: #3498db;
}

.location-address {
    margin: 1rem 0;
    line-height: 1.6;
}

.location-contact {
    margin: 1.5rem 0;
    line-height: 1.6;
}

.location-contact i {
    width: 1.25rem;
    margin-right: 0.75rem;
    color: #3498db;
}

.opening-hours {
    margin: 1.5rem 0 0 0;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.opening-hours h4 {
    margin: 0 0 1rem 0;
    color: #2c3e50;
    display: flex;
    align-items: center;
}

.opening-hours h4 i {
    margin-right: 0.5rem;
    color: #3498db;
}

.opening-hours ul {
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}

.opening-hours li {
    margin-bottom: 0.5rem;
}

.note {
    font-style: italic;
    color: #7f8c8d;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.action-box {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .locations-side-by-side {
        flex-direction: column;
    }
    
    .action-box {
        flex-direction: column;
    }
    
    .action-box .btn {
        width: 100%;
    }
}
