body {
    font-family: Georgia, serif;
    margin: 0;
    padding: 20px;
    background-color: #54101d;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #333;
    color: #b18653;
    padding: 10px 0;
    text-align: center;
    margin-bottom: 30px;
}

h1 {
    margin: 0;
}

.country-section {
    background-color: #d5c5ae;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px #0000001a;
}

.country-section h2 {
    color: #47596f;
    border-bottom: 2px solid #b18653;
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 15px;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

ul li::before {
    content: "•"; /* Un pequeño bullet */
    color: #312229;
    position: absolute;
    left: 0;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #ffffff;
    font-size: 0.9em;
}