/* style/resources-vnd88-registration-process.css */

:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --register-button-bg: #C30808;
    --login-button-bg: #C30808;
    --button-text-color: #FFFF00;
    --background-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --border-light: #e0e0e0;
}

.page-resources-vnd88-registration-process {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-color);
}

.page-resources-vnd88-registration-process__dark-bg {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-resources-vnd88-registration-process__light-bg {
    background-color: var(--background-color);
    color: var(--text-dark);
}

.page-resources-vnd88-registration-process__hero-section {
    position: relative;
    width: 100%;
    padding-top: var(--header-offset, 120px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    min-height: 500px;
}

.page-resources-vnd88-registration-process__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
}

.page-resources-vnd88-registration-process__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 20px;
    margin: 0 auto;
}

.page-resources-vnd88-registration-process__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--text-light);
}

.page-resources-vnd88-registration-process__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-light);
}

.page-resources-vnd88-registration-process__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-resources-vnd88-registration-process__btn-primary,
.page-resources-vnd88-registration-process__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-resources-vnd88-registration-process__btn-primary {
    background-color: var(--register-button-bg);
    color: var(--button-text-color);
    border: 2px solid var(--register-button-bg);
}

.page-resources-vnd88-registration-process__btn-primary:hover {
    background-color: #a00606;
    border-color: #a00606;
}

.page-resources-vnd88-registration-process__btn-secondary {
    background-color: transparent;
    color: var(--button-text-color);
    border: 2px solid var(--button-text-color);
}

.page-resources-vnd88-registration-process__btn-secondary:hover {
    background-color: var(--button-text-color);
    color: var(--register-button-bg);
}

.page-resources-vnd88-registration-process__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.page-resources-vnd88-registration-process__section-title {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
}

.page-resources-vnd88-registration-process__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: justify;
}

.page-resources-vnd88-registration-process__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-vnd88-registration-process__list,
.page-resources-vnd88-registration-process__steps-list,
.page-resources-vnd88-registration-process__sub-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-resources-vnd88-registration-process__steps-list {
    list-style-type: decimal;
    margin-left: 20px;
    padding-left: 0;
}

.page-resources-vnd88-registration-process__list-item,
.page-resources-vnd88-registration-process__step-item,
.page-resources-vnd88-registration-process__sub-list-item {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-resources-vnd88-registration-process__step-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-resources-vnd88-registration-process__step-description {
    margin-bottom: 15px;
}

.page-resources-vnd88-registration-process__faq-container {
    margin-top: 40px;
    border-top: 1px solid var(--border-light);
}

.page-resources-vnd88-registration-process__faq-item {
    border-bottom: 1px solid var(--border-light);
    padding: 15px 0;
}

.page-resources-vnd88-registration-process__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.1em;
    color: var(--text-dark);
    cursor: pointer;
    padding: 5px 0;
    list-style: none;
}

.page-resources-vnd88-registration-process__faq-question::-webkit-details-marker {
    display: none;
}

.page-resources-vnd88-registration-process__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 10px;
    color: var(--primary-color);
}

.page-resources-vnd88-registration-process__faq-item[open] .page-resources-vnd88-registration-process__faq-toggle {
    content: '−';
}

.page-resources-vnd88-registration-process__faq-answer {
    padding-top: 10px;
    font-size: 1em;
    color: var(--text-dark);
}

.page-resources-vnd88-registration-process__faq-answer p {
    margin-bottom: 0;
}

.page-resources-vnd88-registration-process__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-resources-vnd88-registration-process__hero-title {
        font-size: 2.2em;
    }

    .page-resources-vnd88-registration-process__hero-description {
        font-size: 1.1em;
    }

    .page-resources-vnd88-registration-process__section-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-resources-vnd88-registration-process {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-resources-vnd88-registration-process__hero-section {
        min-height: 400px;
        padding: 20px 15px;
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-resources-vnd88-registration-process__hero-title {
        font-size: 1.8em;
    }

    .page-resources-vnd88-registration-process__hero-description {
        font-size: 1em;
    }

    .page-resources-vnd88-registration-process__hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .page-resources-vnd88-registration-process__btn-primary,
    .page-resources-vnd88-registration-process__btn-secondary {
        width: 100% !important;
        max-width: 300px !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    .page-resources-vnd88-registration-process__content-area {
        padding: 30px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-resources-vnd88-registration-process__section-title {
        font-size: 1.5em;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .page-resources-vnd88-registration-process__text-block,
    .page-resources-vnd88-registration-process__list-item,
    .page-resources-vnd88-registration-process__step-item,
    .page-resources-vnd88-registration-process__sub-list-item,
    .page-resources-vnd88-registration-process__faq-question,
    .page-resources-vnd88-registration-process__faq-answer {
        font-size: 1em;
    }

    .page-resources-vnd88-registration-process__step-title {
        font-size: 1.3em;
    }

    .page-resources-vnd88-registration-process__image-content {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-resources-vnd88-registration-process__faq-item {
        padding: 10px 0;
    }

    .page-resources-vnd88-registration-process__cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-resources-vnd88-registration-process__video-section {
        padding-top: var(--header-offset, 120px) !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-resources-vnd88-registration-process__video-section video,
    .page-resources-vnd88-registration-process__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
}