.visit-section {
    max-width: 1200px;
    margin: 180px auto;
    padding: 20px;
}

.visit-header {
    text-align: center;
    margin-bottom: 50px;
}

.visit-header h1 {
    font-size: 36px;
    color: var(--primary);
}

.visit-header p {
    font-size: 18px;
    color: var(--text);
    margin-top: 10px;
}

.visit-locations {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.location-box {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--background);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.location-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.location-details {
    flex: 1;
}

.location-details h3 {
    margin-bottom: 10px;
    color: var(--accent);
}

.location-details p {
    margin: 5px 0;
}

.map-frame {
    flex: 1;
    min-width: 300px;
}

.map-frame iframe {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .location-info {
        flex-direction: column;
    }
}