/* style/sitemap.css */
.page-sitemap {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-sitemap__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-sitemap__hero {
    background: linear-gradient(135deg, #0A2463 0%, #3057a6 100%); /* Dark blue gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-sitemap__hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-sitemap__title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #FFD700; /* Gold for emphasis */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-sitemap__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-sitemap__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.page-sitemap__section:nth-of-type(even) {
    background-color: #f2f4f8;
}

.page-sitemap__section-title {
    font-size: 2.5em;
    color: #0A2463; /* Primary dark blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-sitemap__section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold accent */
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.page-sitemap__introduction p, .page-sitemap__conclusion p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #444;
}

.page-sitemap__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-sitemap__benefit-card {
    background-color: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sitemap__benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-sitemap__card-title {
    font-size: 1.4em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-sitemap__benefit-card p {
    color: #555;
    font-size: 1em;
}

.page-sitemap__feature-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 40px auto 0 auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-sitemap__sitemap-list {
    background-color: #fff;
}

.page-sitemap__category {
    margin-bottom: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    background-color: #fdfdfd;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-sitemap__category-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
    display: inline-block;
}

.page-sitemap__category ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.page-sitemap__category li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

.page-sitemap__category li a {
    color: #0A2463;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
    display: block;
    padding: 8px 0;
    border-bottom: 1px dotted #c0c0c0;
}

.page-sitemap__category li a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-sitemap__list-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin: 50px auto 0 auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-sitemap__cta {
    background: linear-gradient(135deg, #0A2463, #1e3a7a);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-sitemap__cta .page-sitemap__section-title {
    color: #FFD700;
}

.page-sitemap__cta .page-sitemap__section-title::after {
    background-color: #fff;
}

.page-sitemap__cta p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-sitemap__button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2463;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-sitemap__button:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-sitemap__cta-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-top: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-sitemap__title {
        font-size: 2.5em;
    }

    .page-sitemap__subtitle {
        font-size: 1em;
    }

    .page-sitemap__section-title {
        font-size: 2em;
    }

    .page-sitemap__introduction p, .page-sitemap__conclusion p {
        font-size: 1em;
    }

    .page-sitemap__category ul {
        grid-template-columns: 1fr;
    }

    .page-sitemap__button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-sitemap__title {
        font-size: 2em;
    }

    .page-sitemap__subtitle {
        font-size: 0.9em;
    }

    .page-sitemap__section-title {
        font-size: 1.8em;
    }

    .page-sitemap__card-title {
        font-size: 1.2em;
    }
}