* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef3 100%);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #222;
    overflow-x: hidden;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px 24px;
    display: flex;
    flex-direction: column;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.hero-content p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.hero-inf {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #5694bdff;
    font-weight: 500;
}

.inf-mark {
    color: #5694bdff;
}

.inf-img {
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}
.inf-img img,
.story-image img {
    width: 360px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}
.story-section {
    display: flex;
    flex-direction: column;
        align-items: start;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #5694bdff;
}

.section-title,
.location-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0;
}

.location-title {
    margin-left: 40px;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 40px;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.story-text p {
    margin: 0;
    color: #555;
    font-size: 16px;
}

.story-image {
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    margin-top: 50px;
}

.location-section {
    position: relative;
    min-height: 500px; 
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    border-top: #5694bd 7px solid;
    
}


.map-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

}

.map-background iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%); 
}


.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4); 
    pointer-events: none; 
}


.location-card {
    position: relative;
    z-index: 2;
    margin-left: 10%; 
    background: white;
    padding: 40px;
    border: 2px solid #5694bd;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    max-width: 400px;
}

.location-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.location-details {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .location-card {
        margin: 20px;
        padding: 25px;
    }
    .location-section {
        min-height: 400px;
        
    }
}
@media (max-width: 700px) {
    .hero-section,
    .story-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .inf-img img, 
    .story-image img {
        width: 100%;    
        height: auto;   
        max-width: 400px; 
    }

    .container {
        padding: 40px 16px; 
    }
    .location-card {
        margin-left: 5%;
        margin-right: 5%;
        width: 90%;
        padding: 20px;
    }
}