<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.hero-section {
    background: linear-gradient(135deg, #001136 0%, #001a52 100%);
    color: white;
    padding: 60px 0;
}
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin: 30px 0;
}
.info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 20px 0;
}
.contact-item {
    display: flex;
    align-items: center;
    margin: 15px 0;
}
.contact-icon {
    background: linear-gradient(135deg, #667eea 0%, #001136 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
.section-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #001136 100%);
}
.store-name {
    background: linear-gradient(135deg, #ffffff 0%, #0a2b9f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}</pre></body></html>