body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-image: url("b.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
}

/* Hamburger Icon */
.menu-icon {
    position: fixed;
    top: 20px;
    left: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 1000;
}

/* Side Menu */
.menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100%;
    background: white;
    padding: 25px;
    transition: 0.4s;
    overflow-y: auto;
}
.menu.active { left: 0; }
.close-btn { font-size: 25px; cursor: pointer; text-align: right; }
.menu h2 { margin-top: 10px; }
.menu input, .menu select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
}
.menu button {
    width: 100%;
    padding: 15px;
    background: #e77e07;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    cursor: pointer;
}

/* Main Content Centered */
.content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
img { width: 400px; margin-bottom: 20px; }
p { text-align: center; font-size: 20px; color: white; margin-bottom: 50px; }
.hero-text {
    font-weight: bold;
    font-style: italic;
    color: white;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    text-align: center;
}

/* Top-right buttons container */
.top-buttons {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
    z-index: 1000;
}

/* Top-right buttons */
.top-btn {
    background: #e77e07;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}
.top-btn:hover { transform: scale(1.05); }

/* Regions and Cities */
.region-cities {
    background: white;
    padding: 40px;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto 60px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.region-cities h2,
.region-cities p {
    text-align: center;
}
.region-cities ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 32px;
}
.region-cities ul > li {
    margin-bottom: 0;
}
.region-cities ul > li strong {
    display: block;
    font-size: 20px;
    margin-bottom: 12px;
    color: #222;
}
.region-cities ul > li ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.region-cities ul > li ul li {
    margin-bottom: 8px;
    font-size: 16px;
    color: #555;
}
@media (max-width: 900px) {
    .region-cities ul {
        grid-template-columns: repeat(2, minmax(180px, 1fr));
    }
}
@media (max-width: 620px) {
    .region-cities ul {
        grid-template-columns: 1fr;
    }
}

.site-footer {
    text-align: center;
    padding: 18px 20px;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    font-size: 14px;
}

.site-footer p {
    margin: 0;
}

/* Sign Up / Create Account Button */
.signup-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #e77e07;
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}
.signup-btn:hover {
    transform: scale(1.05);
}
/* Map */
.map-container {
    background:white; 
    padding:20px; 
    text-align:center;
    width:100%;
    height:400px;
}
.map-container iframe { width:100%; height:100%; border:0; }