.contact-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-header {
    max-width: 520px;
}

.contact-header p {
    opacity: 0.8;
    font-size: 1.1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    padding: 0;
    border-radius: 1.5rem;
}

.contact-right,
.contact-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-block {
    background: var(--secondary-bg-color);
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-map {
    border-radius: 1rem;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 300px;
    border-radius: 1rem;
    border: none;
}

.contact-block h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.contact-icon {
    width: 1.3rem;
    height: auto;
}

.contact-block p {
    padding-left: 0;
    display: block;
    line-height: 1.4;
}

@media (max-width: 1100px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}