#contacts {
    background-color: #202020;
    min-height: 50vh;
    height: auto;
    padding: 50px 0;
}
.contacts-section {
    padding-top: 60px;
    height: auto;
    min-height: auto;
    color: white;
}
.contacts-title {
    margin: 0 0 30px 0;
    text-align: center;
    align-self: center;
    color: white;
}
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 0;
    text-align: left;
    margin-bottom: 30px;
    justify-content: space-between;
}
.contact-block {
    flex: 1;
    min-width: 300px;
    padding-left: 20px;
    text-align: left;
}
.contact-item {
    margin-bottom: 25px;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}
.contact-label {
    font-weight: 600;
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-right: 5px;
    text-align: left;
}
.contact-value {
    color: #cccccc;
    line-height: 1.6;
    text-align: left !important;
    white-space: pre-line;
}
.contact-email {
    color: #4fc3f7;
    margin-top: 5px;
    display: block;
    width: 100%;
    margin-left: 0;
    padding-left: 0;
}
.secondary-contacts .contact-item { display: block; }
.secondary-contacts .contact-value { margin-top: 5px; margin-left: 20px; }
.secondary-contacts .contact-item:empty { display: none; }
.empty-contact-item { display: none !important; }
.contact-map-container {
    width: 100%;
    height: 350px;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    background-color: #f5f5f5;
    position: relative;
}
.map-error {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 5px;
    color: #e74c3c;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    max-width: 80%;
}
.contacts-info-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.contacts-map-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}
.contacts-info {
    flex: 1;
    min-width: 300px;
}
.contacts-map {
    flex: 2;
    min-width: 300px;
}
@media (max-width: 1200px) {
    .contact-map-container {
        height: 320px;
    }
}
@media (max-width: 992px) {
    .contact-map-container {
        height: 300px;
    }
    .contact-container {
        gap: 30px;
    }
    .contacts-map-row {
        flex-direction: column;
    }
    .contacts-info, .contacts-map {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .contact-map-container {
        height: 280px;
    }
    .contact-container {
        flex-direction: column;
        gap: 20px;
    }
    .contact-block {
        min-width: 100%;
        padding-left: 0;
    }
    .contact-item {
        margin-bottom: 20px;
    }
    .contacts-section {
        padding-top: 40px;
    }
}
@media (max-width: 480px) {
    .contacts-section {
        padding-top: 30px;
    }
    .contact-map-container {
        height: 250px;
        margin-top: 10px;
    }
    .contact-label {
        font-size: 1rem;
    }
    .contact-value {
        font-size: 0.95rem;
    }
    .secondary-contacts .contact-value {
        margin-left: 10px;
    }
    .contacts-title {
        margin-bottom: 20px;
    }
}
