.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-unit) * 3);
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.contact-item {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-dark);
}

.contact-item .note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

.location-info {
    background: var(--gray-light);
    padding: calc(var(--spacing-unit) * 2);
    border-radius: 8px;
}

.map-placeholder {
    background: white;
    border: 1px solid var(--gray-border);
    padding: calc(var(--spacing-unit) * 2);
    border-radius: 8px;
    margin-top: var(--spacing-unit);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.map-placeholder p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-unit);
}

.map-container {
    width: 100%;
    margin-top: var(--spacing-unit);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
}

.collaboration {
    background: var(--gray-light);
    padding: calc(var(--spacing-unit) * 2);
    border-radius: 8px;
    margin-bottom: calc(var(--spacing-unit) * 3);
    border: 2px solid var(--primary-color);
}

.collaboration ul {
    list-style-position: inside;
    margin: var(--spacing-unit) 0;
}

.collaboration li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.social-links {
    text-align: center;
}

.profile-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: calc(var(--spacing-unit) * 2);
    flex-wrap: wrap;
    margin-top: var(--spacing-unit);
}

.profile-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 2px solid var(--secondary-color);
    border-radius: 25px;
    transition: all 0.3s;
}

.profile-links a:hover {
    background: var(--secondary-color);
    color: white;
}

section {
    margin-bottom: calc(var(--spacing-unit) * 3);
}

section h3 {
    color: var(--primary-color);
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-links {
        flex-direction: column;
        align-items: center;
    }
}