body {
    margin: 0;
    padding: 0;
    font-family: 'Georgia', serif;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: #4a4458;
    width: 100%;
    max-width: 420px;
    padding: 20px 20px 30px;
    text-align: center;
    color: white;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.back-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
    transition: background 0.3s;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.header img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
    object-fit: cover;
    max-height: 220px;
}

.header h1 {
    font-size: 2rem;
    margin: 0 0 18px;
}

.location-info p {
    margin: 0 0 10px;
    font-size: 1rem;
    line-height: 1.5;
    color: #f5f5f5;
}

.location-info .highlight {
    margin-top: 8px;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-image img {
    width: 100%;
    border-radius: 10px;
    margin: 14px 0 18px;
    object-fit: cover;
    max-height: 220px;
}

.maps-btn {
    display: inline-block;
    background-color: #d1d1d1;
    color: black;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: bold;
    transition: background 0.3s;
}

.maps-btn:hover {
    background-color: #ffffff;
}
