.nkl-sitemap-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0px 20px;
    margin-bottom: 82px;
}

.nkl-services-content {
    width: 100%;
    margin: 0 auto;
    line-height: 27px;
    /* padding: 60px 0px; */
    padding-top: 60px;
    max-width: 1060px;
    padding-bottom: 40px;
}

.nkl-service-title {
    color: var(--Text-Main, #172810);
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 30px;
}

.nkl-service-description {
    color: var(--Text-Secondary, #536255);
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.nkl-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.nkl-service-section {
    display: flex;
    padding: 24px 14px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1 0 0;
    border-radius: 12px;
    background: var(--Substrate-Light, #FAFAFA);
}


.nkl-service-header {
    display: flex;
    padding-left: 10px;
    padding-bottom: 12px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-bottom: 2px solid #E8EDF2;
}

.nkl-service-header h3 {
    color: var(--Text-Dark, #172810);
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
}

.nkl-service-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    align-self: stretch;
}

.nkl-sitemap-item {
    width: 100%;
}

.nkl-sitemap-item a {
    gap: 8px;
    display: flex;
    padding: 8px 10px;
    align-items: center;
    align-self: stretch;
    width: 100%;
    font-weight: 600;
}

.nkl-sitemap-item span {
    font-family: "Plus Jakarta Sans";
    color: var(--Text-Light-Blue, #C7C7C7);
    font-size: 18px;
    font-weight: 600;
    line-height: 23px;
}

.nkl-sitemap-item a:hover {
    border-radius: 8px;
    background: rgba(199, 199, 199, 0.20);
}

.nkl-sitemap-item a:hover span {
    font-weight: 600;
    color: var(--Text-Secondary, #536255);
}

.nkl-sitemap-item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.nkl-hover-icon {
    display: none;
}

.nkl-sitemap-item a:hover .nkl-hover-icon {
    display: inline-block;
}

.nkl-sitemap-item a:hover .nkl-service-icon {
    display: none;
}

@media (max-width: 1024px) {
    .nkl-services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .nkl-sitemap-container {
        max-width: 100%;
        margin-bottom: 62px;
    }

    .nkl-service-section {
        padding: 20px 12px 20px 12px;
    }

    .nkl-services-content {
        max-width: 100%;
        padding-top: 24px;
        padding-bottom: 38px;
        font-size: 16px;
        line-height: 22px;
    }

    .nkl-service-header {
        padding-left: 6px;
    }

    .nkl-service-title {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 14px;
    }

    .nkl-service-description {
        font-size: 16px;
        line-height: 20px;
        font-weight: 400;
    }

    .nkl-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .nkl-service-header h3 {
        font-size: 20px;
        line-height: 22px;
    }

    .nkl-service-list {
        gap: 6px;
    }

    .nkl-sitemap-item span {
        font-size: 16px;
        line-height: 20px;
    }
}