body, html {
    margin: 0; padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f2e9e0;
}

.hero-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?q=80&w=2070') center/cover;
    min-height: 100vh;
    padding: 60px 0;
}

.overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7); z-index: 1;
}

.relative-content { position: relative; z-index: 2; }

/* Colors & Typography */
.theme-title { color: #FFFFFF; font-weight: bold; font-size: 1.6rem; }
.theme-subtitle { color: #DEAD6F; letter-spacing: 1px; margin-bottom: 25px; }

/* Form Elements */
.custom-input {
    background-color: #FEF3E6 !important;
    border: none; border-radius: 0; padding: 12px;
}

.btn-theme {
    background-color: #DEAD6F; color: #FFFFFF;
    border: none; width: 100%; padding: 15px;
    font-weight: bold; transition: 0.3s;
}

.btn-theme:hover {
    background-color: #FFFFFF; color: #DEAD6F; transform: scale(1.02);
}

/* Map */
.map-border { border: 6px solid #FFFFFF; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

/* Info Boxes */
.info-box {
    background-color: #DEAD6F; color: #FFFFFF;
    text-align: center; padding: 40px 20px; border-radius: 5px;
    transition: 0.4s; height: 100%; cursor: pointer;
}

.info-box:hover {
    background-color: #FFFFFF; color: #DEAD6F;
    transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.info-box i { font-size: 2.5rem; margin-bottom: 15px; }

/* Animations */
.slide-in-left { animation: slideLeft 1s ease-out; }
.slide-in-right { animation: slideRight 1s ease-out; }

@keyframes slideLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }