/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
header {
    background-color: #005cbf;
    color: #fff;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin-bottom: 5px;
}

header p {
    font-size: 1rem;
}

/* Main Content */
main {
    padding: 20px;
}

/* Sections */
section {
    margin-bottom: 20px;
}

section h2 {
    font-size: 1.4rem;
    color: #005cbf;
    margin-bottom: 10px;
}

/* Help Options */
.help-options button {
    display: inline-block;
    margin: 5px;
    padding: 10px 15px;
    background-color: #005cbf;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.help-options button:hover {
    background-color: #0041a3;
}

/* Map Section */
#mapa-interactivo {
    width: 100%;
    height: 200px;
    background-color: #ccc;
    margin: 10px 0;
    text-align: center;
    line-height: 200px;
    font-size: 1.2rem;
    color: #333;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background-color: #005cbf;
    color: #fff;
    font-size: 0.9rem;
}

footer a {
    color: #ffdd57;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 600px) {
    header h1 {
        font-size: 1.5rem;
    }

    section h2 {
        font-size: 1.2rem;
    }

    #mapa-interactivo {
        height: 150px;
        line-height: 150px;
    }
}
