.page-nap-rut {
    color: #1F2D3D; /* Text Main */
    background-color: #F4F7FB; /* Background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* HERO Section */
.page-nap-rut__hero-section {
    padding-top: 10px; /* Small top padding as per rule */
    padding-bottom: 60px;
    background: linear-gradient(180deg, #6FA3FF 0%, #F4F7FB 100%); /* Lighter gradient to ensure dark text visibility */
    color: #1F2D3D; /* Ensure dark text on light background */
}

.page-nap-rut__hero-container {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 40px 16px;
    box-sizing: border-box;
}

.page-nap-rut__hero-content {
    flex: 1 1 45%;
    min-width: 300px;
    color: #1F2D3D; /* Text Main */
}

.page-nap-rut__hero-title {
    font-size: 2.8em;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000000; /* Custom Color_1776249996415 for prominent titles */
    max-width: 600px; /* Prevent overly long lines */
}

.page-nap-rut__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #1F2D3D; /* Text Main */
}

.page-nap-rut__hero-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.page-nap-rut__btn-primary,
.page-nap-rut__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-nap-rut__btn-primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #ffffff;
    border: 2px solid transparent;
}

.page-nap-rut__btn-primary:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    box-shadow: 0 5px 15px rgba(47, 107, 255, 0.4);
}

.page-nap-rut__btn-secondary {
    background: #ffffff; /* Card BG */
    color: #2F6BFF; /* Primary color for text */
    border: 2px solid #2F6BFF; /* Primary color for border */
}

.page-nap-rut__btn-secondary:hover {
    background: #2F6BFF;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(47, 107, 255, 0.2);
}

.page-nap-rut__hero-image {
    flex: 1 1 45%;
    min-width: 300px;
    text-align: center;
}

.page-nap-rut__hero-side-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

/* General Content Sections */
.page-nap-rut__container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 40px 16px;
    box-sizing: border-box;
}

.page-nap-rut__introduction-section,
.page-nap-rut__guide-section,
.page-nap-rut__faq-section,
.page-nap-rut__conclusion-section {
    background-color: #FFFFFF; /* Card BG */
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-nap-rut__section-title {
    font-size: 2.2em;
    font-weight: bold;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 30px;
    text-align: center;
}

.page-nap-rut__sub-title {
    font-size: 1.6em;
    font-weight: bold;
    color: #2F6BFF; /* Primary color */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-nap-rut__text-block {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #1F2D3D; /* Text Main */
}

.page-nap-rut__list,
.page-nap-rut__ordered-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #1F2D3D; /* Text Main */
}

.page-nap-rut__ordered-list {
    list-style-type: decimal;
}

.page-nap-rut__list-item {
    margin-bottom: 10px;
    line-height: 1.6;
}

.page-nap-rut__nested-list {
    list-style-type: circle;
    margin-left: 20px;
    margin-top: 5px;
}

.page-nap-rut__image-content {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: block;
}

/* FAQ Section */
.page-nap-rut__faq-list {
    margin-top: 30px;
}

.page-nap-rut__faq-item {
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    background-color: #F4F7FB; /* Background */
}

.page-nap-rut__faq-item summary {
    list-style: none; /* Hide default marker */
    cursor: pointer;
    padding: 18px 25px;
    background-color: #FFFFFF; /* Card BG */
    color: #1F2D3D; /* Text Main */
    font-weight: bold;
    font-size: 1.1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-nap-rut__faq-item summary:hover {
    background-color: #F4F7FB; /* Background */
}

.page-nap-rut__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-nap-rut__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.page-nap-rut__faq-qtext {
    flex-grow: 1;
}

.page-nap-rut__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #2F6BFF; /* Primary color */
}

.page-nap-rut__faq-item[open] .page-nap-rut__faq-toggle {
    transform: rotate(45deg);
    color: #2F6BFF; /* Primary color */
}

.page-nap-rut__faq-answer {
    padding: 15px 25px 20px;
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    border-top: 1px solid #D6E2FF; /* Border color */
}

.page-nap-rut__faq-answer p {
    margin-bottom: 0;
}

/* Conclusion Section */
.page-nap-rut__conclusion-section {
    text-align: center;
    padding-bottom: 60px;
}

.page-nap-rut__cta-buttons--bottom {
    justify-content: center;
    margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-nap-rut__hero-title {
        font-size: 2.4em;
    }
    .page-nap-rut__section-title {
        font-size: 1.8em;
    }
    .page-nap-rut__sub-title {
        font-size: 1.4em;
    }
    .page-nap-rut__hero-container {
        flex-direction: column;
        text-align: center;
    }
    .page-nap-rut__hero-content,
    .page-nap-rut__hero-image {
        flex: 1 1 100%;
    }
    .page-nap-rut__hero-cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* HERO Section */
    .page-nap-rut__hero-section {
        padding-top: 10px !important; /* Small top padding for mobile */
        padding-bottom: 30px;
    }
    .page-nap-rut__hero-container {
        padding: 20px 15px;
        gap: 20px;
    }
    .page-nap-rut__hero-title {
        font-size: 2em; /* Smaller font size for mobile H1 */
        max-width: 100%;
    }
    .page-nap-rut__hero-description {
        font-size: 1em;
    }
    .page-nap-rut__hero-cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px; /* Ensure buttons have padding if container doesn't */
    }
    .page-nap-rut__btn-primary,
    .page-nap-rut__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* General Content Sections */
    .page-nap-rut__container {
        padding: 25px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden; /* Prevent horizontal scroll */
    }
    .page-nap-rut__introduction-section,
    .page-nap-rut__guide-section,
    .page-nap-rut__faq-section,
    .page-nap-rut__conclusion-section {
        margin-bottom: 20px;
        border-radius: 8px;
    }
    .page-nap-rut__section-title {
        font-size: 1.5em;
        margin-bottom: 20px;
    }
    .page-nap-rut__sub-title {
        font-size: 1.2em;
        margin-top: 25px;
        margin-bottom: 10px;
    }
    .page-nap-rut__text-block,
    .page-nap-rut__list-item {
        font-size: 0.95em;
        line-height: 1.5;
    }

    /* Universal Image Adaptation */
    .page-nap-rut img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        display: block;
    }

    /* FAQ Section */
    .page-nap-rut__faq-item summary {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-nap-rut__faq-answer {
        padding: 10px 20px 15px;
    }
    .page-nap-rut__faq-toggle {
        font-size: 1.2em;
    }
}