/* style/resources-hb88-registration-tutorial.css */
.page-resources-hb88-registration-tutorial {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    line-height: 1.6;
}

.page-resources-hb88-registration-tutorial__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-hb88-registration-tutorial__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #30475E 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero text */
}

.page-resources-hb88-registration-tutorial__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-hb88-registration-tutorial__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f5e6d0; /* Light text */
}

.page-resources-hb88-registration-tutorial__content-section {
    padding: 60px 0;
    background-color: #0A192F; /* Midnight Blue */
    color: #f5e6d0; /* Light text */
}

.page-resources-hb88-registration-tutorial__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.page-resources-hb88-registration-tutorial__step-title {
    font-size: 2em;
    color: #FFD700; /* Gold */
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-resources-hb88-registration-tutorial__paragraph {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #e0e0e0; /* Slightly lighter text for readability */
}

.page-resources-hb88-registration-tutorial__highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-resources-hb88-registration-tutorial__list,
.page-resources-hb88-registration-tutorial__ordered-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-resources-hb88-registration-tutorial__ordered-list {
    list-style-type: decimal;
}

.page-resources-hb88-registration-tutorial__list li,
.page-resources-hb88-registration-tutorial__ordered-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-resources-hb88-registration-tutorial__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-resources-hb88-registration-tutorial__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    font-size: 1.1em;
    cursor: pointer;
}

.page-resources-hb88-registration-tutorial__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A192F; /* Midnight Blue */
    border: 2px solid #FFD700;
}

.page-resources-hb88-registration-tutorial__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-resources-hb88-registration-tutorial__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-resources-hb88-registration-tutorial__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
}

.page-resources-hb88-registration-tutorial__cta-buttons {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.page-resources-hb88-registration-tutorial__faq {
    margin-top: 40px;
}

.page-resources-hb88-registration-tutorial__faq-item {
    background-color: #1a2a40; /* Slightly lighter dark blue */
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-resources-hb88-registration-tutorial__faq-question {
    font-size: 1.3em;
    color: #FFD700; /* Gold */
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-resources-hb88-registration-tutorial__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-resources-hb88-registration-tutorial__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-resources-hb88-registration-tutorial__faq-answer {
    font-size: 1.05em;
    color: #e0e0e0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-resources-hb88-registration-tutorial__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-hb88-registration-tutorial__hero-title {
        font-size: 2.5em;
    }

    .page-resources-hb88-registration-tutorial__hero-subtitle {
        font-size: 1.2em;
    }

    .page-resources-hb88-registration-tutorial__section-title {
        font-size: 2em;
    }

    .page-resources-hb88-registration-tutorial__step-title {
        font-size: 1.7em;
    }

    .page-resources-hb88-registration-tutorial__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-resources-hb88-registration-tutorial__hero-title {
        font-size: 2em;
    }

    .page-resources-hb88-registration-tutorial__hero-subtitle {
        font-size: 1em;
    }

    .page-resources-hb88-registration-tutorial__section-title {
        font-size: 1.8em;
    }

    .page-resources-hb88-registration-tutorial__step-title {
        font-size: 1.5em;
    }

    .page-resources-hb88-registration-tutorial__btn {
        padding: 10px 20px;
        font-size: 0.9em;
        margin: 5px;
    }

    .page-resources-hb88-registration-tutorial__cta-buttons {
        flex-direction: column;
    }
}