﻿.contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background-color: #111;
    color: white;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin: 20px 20px;
}

.contact-content {
    flex: 1 1 300px;
    max-width: 500px;
}

.contact-title {
    font-size: 2rem;
    color: #f1c40f;
    margin-bottom: 20px;
}

.contact-address,
.contact-phone,
.contact-email {
    font-size: 1rem;
    margin-bottom: 10px;
    color: white;
}

.contact-phone a,
.contact-email a {
    color: #575fcf;
    text-decoration: none;
}

.contact-phone a:hover,
.contact-email a:hover {
    text-decoration: underline;
}

.contact-description {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #ccc;
}

.contact-map {
    flex: 1 1 400px;
    min-height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        gap: 20px;
    }

    .contact-map {
        min-height: 250px;
    }
}