/* style/resources-sv88-registration-withdrawal.css */

/* Biến CSS */
:root {
    --page-sv88-primary-color: #0A192F;
    --page-sv88-accent-color: #FFD700;
    --page-sv88-light-text: #FFFFFF;
    --page-sv88-dark-text: #333333;
    --page-sv88-bg-light: #F8F8F8;
    --page-sv88-bg-dark: #1A2E44;
    --page-sv88-border-color: #e0e0e0;
}

.page-resources-sv88-registration-withdrawal {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-sv88-dark-text);
    background-color: var(--page-sv88-bg-light);
}

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

.page-resources-sv88-registration-withdrawal__hero-section {
    background: linear-gradient(135deg, var(--page-sv88-primary-color), var(--page-sv88-bg-dark));
    color: var(--page-sv88-light-text);
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-sv88-registration-withdrawal__hero-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: var(--page-sv88-accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-sv88-registration-withdrawal__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-sv88-registration-withdrawal__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

.page-resources-sv88-registration-withdrawal__button--primary {
    background-color: var(--page-sv88-accent-color);
    color: var(--page-sv88-primary-color);
}

.page-resources-sv88-registration-withdrawal__button--primary:hover {
    background-color: #e6c200; /* Darker shade of accent */
    transform: translateY(-2px);
}

.page-resources-sv88-registration-withdrawal__button--secondary {
    background-color: var(--page-sv88-primary-color);
    color: var(--page-sv88-light-text);
    border: 1px solid var(--page-sv88-accent-color);
    margin-left: 15px; /* Adjust if needed for single button */
}

.page-resources-sv88-registration-withdrawal__button--secondary:hover {
    background-color: var(--page-sv88-bg-dark);
    transform: translateY(-2px);
}

.page-resources-sv88-registration-withdrawal__content-section {
    padding: 60px 0;
}

.page-resources-sv88-registration-withdrawal__article-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.page-resources-sv88-registration-withdrawal__sidebar {
    flex: 0 0 280px;
    padding: 20px;
    background-color: var(--page-sv88-light-text);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 20px; /* Adjust based on header height */
    align-self: flex-start;
}

.page-resources-sv88-registration-withdrawal__table-of-contents {
    margin-bottom: 30px;
}

.page-resources-sv88-registration-withdrawal__toc-title {
    font-size: 1.5em;
    color: var(--page-sv88-primary-color);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--page-sv88-accent-color);
    padding-bottom: 10px;
}

.page-resources-sv88-registration-withdrawal__table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-resources-sv88-registration-withdrawal__table-of-contents li {
    margin-bottom: 10px;
}

.page-resources-sv88-registration-withdrawal__table-of-contents a {
    text-decoration: none;
    color: var(--page-sv88-dark-text);
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.page-resources-sv88-registration-withdrawal__table-of-contents a:hover {
    color: var(--page-sv88-accent-color);
    padding-left: 5px;
}

.page-resources-sv88-registration-withdrawal__promo-banner {
    background-color: var(--page-sv88-primary-color);
    color: var(--page-sv88-light-text);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.page-resources-sv88-registration-withdrawal__promo-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.page-resources-sv88-registration-withdrawal__promo-title {
    font-size: 1.4em;
    color: var(--page-sv88-accent-color);
    margin-bottom: 10px;
}

.page-resources-sv88-registration-withdrawal__promo-text {
    font-size: 1em;
    margin-bottom: 20px;
}

.page-resources-sv88-registration-withdrawal__article-content {
    flex: 1;
    max-width: 800px; /* Optimal reading width */
    background-color: var(--page-sv88-light-text);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-resources-sv88-registration-withdrawal__article-content h2 {
    font-size: 2em;
    color: var(--page-sv88-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--page-sv88-accent-color);
}

.page-resources-sv88-registration-withdrawal__article-content h3 {
    font-size: 1.5em;
    color: var(--page-sv88-primary-color);
    margin-top: 25px;
    margin-bottom: 10px;
}

.page-resources-sv88-registration-withdrawal__article-content p {
    font-size: 1.1em;
    margin-bottom: 1em;
    line-height: 1.7;
}

.page-resources-sv88-registration-withdrawal__article-content ul,
.page-resources-sv88-registration-withdrawal__article-content ol {
    margin-bottom: 1em;
    padding-left: 25px;
    font-size: 1.1em;
}

.page-resources-sv88-registration-withdrawal__article-content li {
    margin-bottom: 8px;
}

.page-resources-sv88-registration-withdrawal__article-content a {
    color: var(--page-sv88-primary-color);
    text-decoration: underline;
}

.page-resources-sv88-registration-withdrawal__article-content a:hover {
    color: var(--page-sv88-accent-color);
}

.page-resources-sv88-registration-withdrawal__article-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 25px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-sv88-registration-withdrawal__faq {
    margin-top: 30px;
}

.page-resources-sv88-registration-withdrawal__faq-item {
    background-color: var(--page-sv88-bg-light);
    border: 1px solid var(--page-sv88-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
}

.page-resources-sv88-registration-withdrawal__faq-question {
    font-size: 1.3em;
    color: var(--page-sv88-primary-color);
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-resources-sv88-registration-withdrawal__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: var(--page-sv88-accent-color);
    transition: transform 0.3s ease;
}

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

.page-resources-sv88-registration-withdrawal__faq-answer {
    font-size: 1.1em;
    color: var(--page-sv88-dark-text);
    display: none;
    margin-top: 10px;
}

.page-resources-sv88-registration-withdrawal__faq-answer.active {
    display: block;
}

.page-resources-sv88-registration-withdrawal__action-buttons {
    margin-top: 40px;
    text-align: center;
}

.page-resources-sv88-registration-withdrawal__action-buttons .page-resources-sv88-registration-withdrawal__button {
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-sv88-registration-withdrawal__article-container {
        flex-direction: column;
    }

    .page-resources-sv88-registration-withdrawal__sidebar {
        flex: 0 0 auto;
        width: 100%;
        position: static;
        margin-bottom: 40px;
    }

    .page-resources-sv88-registration-withdrawal__article-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-resources-sv88-registration-withdrawal__hero-title {
        font-size: 2.2em;
    }

    .page-resources-sv88-registration-withdrawal__hero-subtitle {
        font-size: 1.1em;
    }

    .page-resources-sv88-registration-withdrawal__article-content {
        padding: 20px;
    }

    .page-resources-sv88-registration-withdrawal__article-content h2 {
        font-size: 1.8em;
    }

    .page-resources-sv88-registration-withdrawal__article-content h3 {
        font-size: 1.3em;
    }

    .page-resources-sv88-registration-withdrawal__article-content p,
    .page-resources-sv88-registration-withdrawal__article-content ul,
    .page-resources-sv88-registration-withdrawal__article-content ol {
        font-size: 1em;
    }

    .page-resources-sv88-registration-withdrawal__button {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-resources-sv88-registration-withdrawal__action-buttons .page-resources-sv88-registration-withdrawal__button {
        margin: 10px 0;
        width: 100%;
        display: block;
    }
    .page-resources-sv88-registration-withdrawal__button--secondary {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .page-resources-sv88-registration-withdrawal__hero-title {
        font-size: 1.8em;
    }

    .page-resources-sv88-registration-withdrawal__hero-subtitle {
        font-size: 0.9em;
    }

    .page-resources-sv88-registration-withdrawal__article-content {
        padding: 15px;
    }

    .page-resources-sv88-registration-withdrawal__toc-title {
        font-size: 1.3em;
    }
    .page-resources-sv88-registration-withdrawal__promo-title {
        font-size: 1.2em;
    }
}