
    :root {
        --page-66f-primary-color: #FFD700; /* Gold */
        --page-66f-secondary-color: #007bff; /* Blue */
        --page-66f-dark-bg: #121212;
        --page-66f-medium-bg: #1a1a1a;
        --page-66f-light-bg: #2a2a2a;
        --page-66f-text-color: #ffffff;
        --page-66f-border-color: #333;
    }

    body {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: var(--page-66f-text-color);
        background-color: var(--page-66f-dark-bg);
    }

    .page-66f {
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .page-66f__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .page-66f__section {
        padding: 40px 0;
        text-align: center;
    }

    .page-66f__section--dark {
        background-color: var(--page-66f-medium-bg);
    }

    .page-66f__section--light {
        background-color: var(--page-66f-dark-bg);
    }

    .page-66f__section-title {
        font-size: 2.5em;
        color: var(--page-66f-primary-color);
        margin-bottom: 30px;
        text-align: center;
        font-weight: bold;
    }

    .page-66f__section-subtitle {
        font-size: 1.2em;
        color: #ccc;
        margin-bottom: 40px;
        text-align: center;
    }

    /* Hero Section */
    .page-66f__hero-section {
        position: relative;
        background-color: var(--page-66f-dark-bg);
        padding-top: 10px; /* Small decorative padding, body padding handles header offset */
        padding-bottom: 40px;
        overflow: hidden;
    }

    .page-66f__hero-content {
        position: relative;
        z-index: 1;
        text-align: center;
        padding: 20px 0;
    }

    .page-66f__hero-title {
        font-size: 3.5em;
        color: var(--page-66f-primary-color);
        margin-bottom: 10px;
        font-weight: 900;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-66f__hero-subtitle {
        font-size: 1.5em;
        color: var(--page-66f-text-color);
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-66f__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
    }

    .page-66f__hero-image {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    /* About Section */
    .page-66f__about-section {
        background-color: var(--page-66f-medium-bg);
        padding: 60px 0;
    }

    .page-66f__about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: left;
    }

    .page-66f__about-text {
        max-width: 800px;
        font-size: 1.1em;
        color: #e0e0e0;
    }

    .page-66f__about-text p {
        margin-bottom: 15px;
    }

    .page-66f__about-image-wrapper {
        width: 100%;
        max-width: 600px;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-66f__about-image {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    /* Product Section */
    .page-66f__product-section {
        padding: 60px 0;
        background-color: var(--page-66f-dark-bg);
    }

    .page-66f__product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-66f__product-card {
        background-color: var(--page-66f-light-bg);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        padding-bottom: 20px;
    }

    .page-66f__product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6);
    }

    .page-66f__product-image-wrapper {
        width: 100%;
        max-width: 100%;
        height: 200px; /* Fixed height for consistency */
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 15px;
        background-color: #000;
    }

    .page-66f__product-image {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Cover the container */
        display: block;
    }

    .page-66f__product-title {
        font-size: 1.5em;
        color: var(--page-66f-primary-color);
        margin-bottom: 10px;
        padding: 0 15px;
    }

    .page-66f__product-description {
        font-size: 0.95em;
        color: #ccc;
        padding: 0 15px;
    }

    /* Promotions Section */
    .page-66f__promotions-section {
        background-color: var(--page-66f-medium-bg);
        padding: 60px 0;
    }

    .page-66f__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-66f__promo-card {
        background-color: var(--page-66f-light-bg);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        text-align: left;
        padding: 25px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 250px;
    }

    .page-66f__promo-card-title {
        font-size: 1.6em;
        color: var(--page-66f-primary-color);
        margin-bottom: 15px;
    }

    .page-66f__promo-card-description {
        font-size: 1em;
        color: #e0e0e0;
        margin-bottom: 20px;
        flex-grow: 1;
    }

    .page-66f__promo-button {
        display: inline-block;
        background-color: var(--page-66f-secondary-color);
        color: var(--page-66f-text-color);
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border: none; /* Ensure it looks like a button */
        cursor: pointer;
    }

    .page-66f__promo-button:hover {
        background-color: #0056b3;
    }

    /* Why Choose Section */
    .page-66f__advantages-section {
        padding: 60px 0;
        background-color: var(--page-66f-dark-bg);
    }

    .page-66f__advantage-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-66f__advantage-item {
        background-color: var(--page-66f-light-bg);
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .page-66f__advantage-image-wrapper {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background-color: #333;
    }

    .page-66f__advantage-image {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    .page-66f__advantage-title {
        font-size: 1.4em;
        color: var(--page-66f-primary-color);
        margin-bottom: 10px;
    }

    .page-66f__advantage-description {
        font-size: 0.95em;
        color: #ccc;
    }

    /* Payment & Providers Section */
    .page-66f__partners-section {
        background-color: var(--page-66f-medium-bg);
        padding: 60px 0;
    }

    .page-66f__partners-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
    }

    .page-66f__partner-logo-wrapper {
        width: 150px;
        height: 80px;
        background-color: var(--page-66f-light-bg);
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-66f__partner-logo-wrapper:hover {
        transform: translateY(-3px);
    }

    .page-66f__partner-logo {
        max-width: 80%;
        max-height: 80%;
        height: auto;
        object-fit: contain;
    }

    /* FAQ Section */
    .page-66f__faq-section {
        padding: 40px 0;
        background-color: var(--page-66f-dark-bg);
        color: var(--page-66f-text-color);
    }

    .page-66f__faq-list {
        max-width: 900px;
        margin: 0 auto;
    }

    .page-66f__faq-item {
        background-color: var(--page-66f-light-bg);
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .page-66f__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        background-color: #333;
        color: var(--page-66f-primary-color);
        font-weight: bold;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-66f__faq-question:hover {
        background-color: #444;
    }

    .page-66f__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        flex-grow: 1;
        pointer-events: none;
        color: var(--page-66f-primary-color);
    }

    .page-66f__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none;
        color: var(--page-66f-primary-color);
    }

    .page-66f__faq-item.active .page-66f__faq-toggle {
        transform: rotate(45deg);
    }

    .page-66f__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        background-color: var(--page-66f-light-bg);
        color: var(--page-66f-text-color);
    }

    .page-66f__faq-item.active .page-66f__faq-answer {
        max-height: 2000px !important;
        padding: 20px 20px !important;
        opacity: 1;
    }

    .page-66f__faq-answer p {
        margin: 0;
        line-height: 1.6;
    }
    .page-66f__faq-answer a {
        color: var(--page-66f-primary-color);
        text-decoration: none;
    }
    .page-66f__faq-answer a:hover {
        text-decoration: underline;
    }

    /* Call to Action Section */
    .page-66f__cta-section {
        background-color: var(--page-66f-secondary-color);
        padding: 50px 0;
    }

    .page-66f__cta-title {
        font-size: 2em;
        color: var(--page-66f-text-color);
        margin-bottom: 20px;
    }

    .page-66f__cta-button {
        display: inline-block;
        background-color: var(--page-66f-primary-color);
        color: var(--page-66f-dark-bg);
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-66f__cta-button:hover {
        background-color: #e6b800;
        transform: translateY(-3px);
    }

    /* Floating Buttons */
    .page-66f__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-66f__floating-button {
        display: block;
        padding: 12px 25px;
        border-radius: 50px;
        text-align: center;
        font-weight: bold;
        text-decoration: none;
        transition: transform 0.3s ease, background-color 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        min-width: 120px;
        white-space: nowrap;
    }

    .page-66f__floating-button--register {
        background-color: var(--page-66f-primary-color);
        color: var(--page-66f-dark-bg);
    }

    .page-66f__floating-button--login {
        background-color: var(--page-66f-secondary-color);
        color: var(--page-66f-text-color);
    }

    .page-66f__floating-button:hover {
        transform: translateY(-3px);
        opacity: 0.9;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-66f__hero-title {
            font-size: 2.5em;
        }

        .page-66f__hero-subtitle {
            font-size: 1.2em;
            padding: 0 10px;
        }

        .page-66f__section-title {
            font-size: 2em;
            margin-bottom: 20px;
        }

        .page-66f__section-subtitle {
            font-size: 1em;
            margin-bottom: 30px;
            padding: 0 10px;
        }

        .page-66f__about-content {
            text-align: center;
        }

        .page-66f__product-grid,
        .page-66f__promo-grid,
        .page-66f__advantage-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-66f__product-image-wrapper {
            height: 180px;
        }

        .page-66f__promo-card {
            padding: 20px;
            min-height: unset;
        }

        .page-66f__promo-card-title {
            font-size: 1.4em;
        }

        .page-66f__advantage-item {
            padding: 25px;
        }

        .page-66f__advantage-image-wrapper {
            width: 80px;
            height: 80px;
            margin-bottom: 15px;
        }

        .page-66f__advantage-title {
            font-size: 1.2em;
        }

        .page-66f__partners-grid {
            gap: 15px;
        }

        .page-66f__partner-logo-wrapper {
            width: 120px;
            height: 60px;
        }

        .page-66f__faq-question {
            padding: 12px 15px;
        }
        .page-66f__faq-question h3 {
            font-size: 1em;
        }
        .page-66f__faq-toggle {
            font-size: 1.3em;
        }
        .page-66f__faq-answer {
            padding: 0 15px;
        }
        .page-66f__faq-item.active .page-66f__faq-answer {
            padding: 15px 15px !important;
        }

        .page-66f__cta-title {
            font-size: 1.5em;
        }

        .page-66f__cta-button {
            padding: 12px 25px;
            font-size: 1em;
        }

        .page-66f__floating-buttons {
            bottom: 15px;
            right: 15px;
            flex-direction: row;
            left: 15px;
            justify-content: space-around;
        }
        .page-66f__floating-button {
            flex: 1;
            padding: 10px 15px;
            min-width: unset;
            font-size: 0.9em;
        }
    }

    @media (max-width: 480px) {
        .page-66f__hero-title {
            font-size: 2em;
        }
        .page-66f__section-title {
            font-size: 1.8em;
        }
    }
  