* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #ad6348;
}

header {
    background-color: #075e64;
    color: white;
    text-align: center;
    padding: 1.5rem;
    box-shadow: 0 2px 5px black;
}

header h1 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

main {
    flex: 1;
    padding: 1.5rem;
}

#map {
    height: 75vh;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px black;
    border: 2px solid #d7ccc8;
}

footer {
    background-color: #075e64;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: auto;
}

.custom-popup .leaflet-popup-content-wrapper {
    background: #963613;
    color: white;
    border-radius: 8px;
    padding: 5px;
    box-shadow: 0 3px 10px black;
}

.custom-popup .leaflet-popup-tip {
    background: #963613;
}

.custom-popup h3 {
    margin-bottom: 8px;
    color: #fff;
    font-size: 1.1rem;
    border-bottom: 1px solid white;
    padding-bottom: 5px;
}

.custom-popup p {
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    #map {
        height: 60vh;
    }
    
    header h1 {
        font-size: 1.5rem;
    }
    
    header p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    #map {
        height: 50vh;
    }
    
    header, footer {
        padding: 1rem 0.5rem;
    }
    
    main {
        padding: 1rem;
    }
}