:root {
    --primary-color: #C91F17;
    --secondary-color: #E53935;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
    --card-bg: #D32F2F;
    --background-color: #B71C1C;
    --text-main-color: #FFF5E1;
    --border-color: #F2B544;
    --glow-color: #FFCC66;
    --gold-color: #F4D34D;
    --deep-red-color: #7A0E0E;
}

.page-best-vff88-link {
    font-family: Arial, sans-serif;
    color: var(--text-main-color); /* Default text color for the page */
    background-color: var(--background-color); /* Default background for the page main */
    line-height: 1.6;
}

.page-best-vff88-link__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-best-vff88-link__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, assuming body handles --header-offset */
    padding-bottom: 40px;
    color: var(--text-main-color);
    text-align: center;
    overflow: hidden;
}

.page-best-vff88-link__hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    margin-bottom: 20px;
}

.page-best-vff88-link__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7); /* Slightly dim the image for text readability */
}

.page-best-vff88-link__hero-content {
    position: relative;
    z-index: 10;
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-best-vff88-link__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--text-main-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-best-vff88-link__hero-description {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: var(--text-main-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-best-vff88-link__hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* General Section Styles */
.page-best-vff88-link__section {
    padding: 60px 0;
}

.page-best-vff88-link__section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: var(--gold-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-best-vff88-link__section-description,
.page-best-vff88-link__section-text {
    font-size: 1.1rem;
    text-align: justify;
    margin-bottom: 20px;
    color: var(--text-main-color);
}

.page-best-vff88-link__image-wrapper {
    margin: 30px auto;
    text-align: center;
}

.page-best-vff88-link__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.page-best-vff88-link__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-best-vff88-link__list-item {
    background-color: var(--card-bg);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    color: var(--text-main-color);
    font-size: 1.05rem;
    line-height: 1.5;
}

.page-best-vff88-link__numbered-list {
    list-style-type: decimal;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-best-vff88-link__numbered-list .page-best-vff88-link__list-item {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    margin-bottom: 15px;
    color: var(--text-main-color);
}

/* Buttons */
.page-best-vff88-link__btn-primary,
.page-best-vff88-link__btn-secondary,
.page-best-vff88-link__btn-small {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
}

.page-best-vff88-link__btn-primary {
    background: var(--button-gradient);
    color: var(--deep-red-color);
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-best-vff88-link__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
}

.page-best-vff88-link__btn-secondary {
    background-color: transparent;
    color: var(--border-color);
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-best-vff88-link__btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-best-vff88-link__btn-small {
    padding: 8px 18px;
    font-size: 0.9rem;
    background: var(--button-gradient);
    color: var(--deep-red-color);
    border: none;
    border-radius: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-best-vff88-link__btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.page-best-vff88-link__btn-centered {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 300px;
}

/* Dark Section for contrast */
.page-best-vff88-link__dark-section {
    background-color: var(--deep-red-color);
    border-radius: 15px;
    padding: 40px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-best-vff88-link__dark-section .page-best-vff88-link__section-title {
    color: var(--gold-color);
}

.page-best-vff88-link__dark-section .page-best-vff88-link__section-description,
.page-best-vff88-link__dark-section .page-best-vff88-link__section-text,
.page-best-vff88-link__dark-section .page-best-vff88-link__list-item {
    color: var(--text-main-color);
    background-color: transparent;
    box-shadow: none;
}

/* Light Background Section for contrast */
.page-best-vff88-link__light-bg {
    background-color: var(--gold-color);
    color: var(--deep-red-color);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-best-vff88-link__light-bg .page-best-vff88-link__section-title {
    color: var(--deep-red-color);
}

.page-best-vff88-link__light-bg .page-best-vff88-link__section-description,
.page-best-vff88-link__light-bg .page-best-vff88-link__section-text,
.page-best-vff88-link__light-bg .page-best-vff88-link__list-item {
    color: var(--deep-red-color);
    background-color: transparent;
    box-shadow: none;
}

/* Products Section */
.page-best-vff88-link__products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-best-vff88-link__product-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--text-main-color);
}

.page-best-vff88-link__product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.page-best-vff88-link__product-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--gold-color);
    padding: 0 15px;
}

.page-best-vff88-link__product-text {
    font-size: 1rem;
    margin-bottom: 20px;
    padding: 0 15px;
    flex-grow: 1;
}

/* Promotions Section */
.page-best-vff88-link__promotions-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.page-best-vff88-link__promotions-content .page-best-vff88-link__image-wrapper {
    flex: 1;
    margin: 0;
}

.page-best-vff88-link__promotions-list {
    flex: 1;
    list-style: none;
    padding: 0;
}

.page-best-vff88-link__promotions-list .page-best-vff88-link__list-item {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
}

/* Registration Section */
.page-best-vff88-link__registration-steps {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.page-best-vff88-link__registration-steps .page-best-vff88-link__image-wrapper {
    flex: 1;
    margin: 0;
}

.page-best-vff88-link__registration-steps .page-best-vff88-link__numbered-list {
    flex: 1;
}

/* Support Section */
.page-best-vff88-link__support-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.page-best-vff88-link__support-content .page-best-vff88-link__image-wrapper {
    flex: 1;
    margin: 0;
}

.page-best-vff88-link__support-list {
    flex: 1;
    list-style: none;
    padding: 0;
}

.page-best-vff88-link__support-list .page-best-vff88-link__list-item {
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--deep-red-color);
    border: 1px solid var(--deep-red-color);
}

/* FAQ Section */
.page-best-vff88-link__faq-list {
    margin-top: 40px;
}

.page-best-vff88-link__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: var(--text-main-color);
}

.page-best-vff88-link__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--gold-color);
    background-color: var(--deep-red-color);
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-best-vff88-link__faq-question:hover {
    background-color: rgba(122, 14, 14, 0.8);
}

.page-best-vff88-link__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--text-main-color);
}

.page-best-vff88-link__faq-answer {
    padding: 20px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-main-color);
}

/* Hide default details marker */
details > summary::-webkit-details-marker {
    display: none;
}
details > summary {
    list-style: none;
}

/* Conclusion Section */
.page-best-vff88-link__conclusion-section {
    text-align: center;
    padding-bottom: 80px;
}

.page-best-vff88-link__conclusion-section .page-best-vff88-link__cta-buttons {
    margin-top: 50px;
}

/* --- Responsive Styles --- */

/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
    .page-best-vff88-link__container {
        padding: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* HERO Section */
    .page-best-vff88-link__hero-section {
        padding-top: 10px !important;
        padding-bottom: 20px;
    }

    .page-best-vff88-link__hero-title {
        font-size: 2rem;
    }

    .page-best-vff88-link__hero-description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .page-best-vff88-link__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-best-vff88-link__btn-primary,
    .page-best-vff88-link__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 10px 15px;
        font-size: 1rem;
    }

    /* General Section Styles */
    .page-best-vff88-link__section {
        padding: 40px 0;
    }

    .page-best-vff88-link__section-title {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .page-best-vff88-link__section-description,
    .page-best-vff88-link__section-text,
    .page-best-vff88-link__list-item,
    .page-best-vff88-link__numbered-list .page-best-vff88-link__list-item {
        font-size: 0.95rem;
        padding-left: 10px;
        padding-right: 10px;
        text-align: left;
    }

    .page-best-vff88-link__list-item {
        padding: 12px 15px;
    }

    /* Image Adaptation */
    .page-best-vff88-link img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        margin: 0 auto !important;
    }

    .page-best-vff88-link__image-wrapper {
        margin: 20px auto;
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    /* Products Section */
    .page-best-vff88-link__products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .page-best-vff88-link__product-image {
        height: 180px;
    }

    /* Promotions Section */
    .page-best-vff88-link__promotions-content {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }

    .page-best-vff88-link__promotions-content .page-best-vff88-link__image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
    }

    .page-best-vff88-link__promotions-list {
        width: 100%;
    }

    .page-best-vff88-link__dark-section {
        padding: 25px 15px;
    }

    /* Registration Section */
    .page-best-vff88-link__registration-steps {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }

    .page-best-vff88-link__registration-steps .page-best-vff88-link__image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
    }

    /* Support Section */
    .page-best-vff88-link__support-content {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }

    .page-best-vff88-link__support-content .page-best-vff88-link__image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
    }

    .page-best-vff88-link__light-bg {
        padding: 25px 15px;
    }

    /* FAQ Section */
    .page-best-vff88-link__faq-question {
        font-size: 1.05rem;
        padding: 15px;
    }

    .page-best-vff88-link__faq-answer {
        padding: 15px;
        font-size: 0.95rem;
    }

    /* Conclusion Section */
    .page-best-vff88-link__conclusion-section {
        padding-bottom: 40px;
    }
}

/* Tablet devices (max-width: 1024px) - Adjustments */
@media (max-width: 1024px) {
    .page-best-vff88-link__container {
        padding: 20px;
    }

    .page-best-vff88-link__hero-title {
        font-size: clamp(2.2rem, 4.5vw, 3rem);
    }

    .page-best-vff88-link__hero-description {
        font-size: 1.1rem;
    }

    .page-best-vff88-link__section-title {
        font-size: 2.2rem;
    }

    .page-best-vff88-link__section-description,
    .page-best-vff88-link__section-text {
        font-size: 1rem;
    }

    .page-best-vff88-link__products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-best-vff88-link__promotions-content,
    .page-best-vff88-link__registration-steps,
    .page-best-vff88-link__support-content {
        flex-direction: column;
        gap: 30px;
    }

    .page-best-vff88-link__promotions-content .page-best-vff88-link__image-wrapper,
    .page-best-vff88-link__registration-steps .page-best-vff88-link__image-wrapper,
    .page-best-vff88-link__support-content .page-best-vff88-link__image-wrapper {
        max-width: 80%;
        margin: 0 auto;
    }
}