<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.map-section {
    position: relative;
    margin: 0;
    padding: 0;
}

#contact-map {
    height: 650px;
    width: 100%;
    position: relative;
    margin: 0;
}

.map-info-window {
    padding: 15px;
    min-width: 200px;
    font-family: Arial, sans-serif;
}

.map-info-window h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #333333;
    font-weight: 600;
    font-size: 16px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eeeeee;
}

.map-info-window p {
    margin-bottom: 8px;
    font-size: 13px;
    color: #666666;
}

.map-info-window i {
    color: #555555;
    margin-right: 5px;
    width: 15px;
    text-align: center;
}

.map-container {
    position: relative;
    margin: 0;
    max-width: 100%;
}

.map-controls {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    max-width: 280px;
}

.map-controls h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333333;
    font-size: 16px;
    font-weight: 600;
}

.map-controls p {
    margin-bottom: 10px;
    font-size: 13px;
    color: #555555;
    line-height: 1.4;
}

.map-controls p strong {
    color: #333333;
}

.map-location-btn {
    display: inline-block;
    margin: 10px 0 0;
    padding: 8px 12px;
    background-color: #2196F3;
    color: white;
    border-radius: 2px;
    text-decoration: none;
    font-size: 13px;
    transition: background-color 0.2s ease;
    text-align: center;
}

.map-location-btn i {
    margin-right: 5px;
}

.map-location-btn:hover {
    background-color: #0c7cd5;
    color: white;
    text-decoration: none;
}

/* Responsive dÃ¼zenlemeler */
@media (max-width: 991px) {
    #contact-map {
        height: 500px;
    }
}

@media (max-width: 767px) {
    #contact-map {
        height: 400px;
    }
    
    .map-controls {
        position: relative;
        top: auto;
        left: auto;
        margin: -30px auto 30px;
        max-width: 90%;
        z-index: 20;
    }
} </pre></body></html>