body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f4f4f4;
}

.sitemap-wrapper-mapa-sitio {
    flex-grow: 1;
    padding-top: 60px;
    padding-bottom: 50px;
}

.sitemap-container-mapa-sitio {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.sitemap-title-mapa-sitio {
    font-size: 2.5em;
    margin: 40px 0;
    text-align: center;
    color: #0ead63;
    position: relative;
    padding-bottom: 15px;
}

.policy-title-img {
    width: 70px;
    height: auto;
    margin-left: 1rem;
}

.sitemap-title-mapa-sitio::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #0ead63;
}

.sitemap-content-mapa-sitio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.sitemap-section-mapa-sitio {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.sitemap-section-mapa-sitio:hover {
    transform: translateY(-5px);
}

.section-title-mapa-sitio {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #0ead63;
    border-bottom: 2px solid #474646;
    padding-bottom: 10px;
}

.sitemap-links-mapa-sitio {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sitemap-link-mapa-sitio {
    color: #474646;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.sitemap-link-mapa-sitio:hover {
    color: #0ead63;
    padding-left: 10px;
}

/* Responsive Breakpoints */
@media (min-width: 1481px) {
    .sitemap-title {
        font-size: 3em;
    }

    .section-title {
        font-size: 2em;
    }
}

@media (min-width: 1281px) and (max-width: 1480px) {
    .sitemap-title {
        font-size: 2.8em;
    }

    .section-title {
        font-size: 1.9em;
    }
}

@media (min-width: 981px) and (max-width: 1280px) {
    .sitemap-title {
        font-size: 2.6em;
    }

    .section-title {
        font-size: 1.8em;
    }
}

@media (min-width: 681px) and (max-width: 980px) {
    .sitemap-title {
        font-size: 2.4em;
    }

    .section-title {
        font-size: 1.7em;
    }
}

@media (min-width: 481px) and (max-width: 680px) {
    .sitemap-title {
        font-size: 2.2em;
    }

    .section-title {
        font-size: 1.6em;
    }
}

@media (min-width: 381px) and (max-width: 480px) {
    .sitemap-title {
        font-size: 2em;
    }

    .section-title {
        font-size: 1.5em;
    }
}

@media (max-width: 380px) {
    .sitemap-title {
        font-size: 1.8em;
    }

    .section-title {
        font-size: 1.2em;
    }
}