
    /* Fixed nav bar spacing for hero section */
    .page-yy77711__hero-section {
        padding-top: 10px; /* Small decorative top padding, assuming body already has --header-offset */
    }

    /* General Styling */
    .page-yy77711 {
        font-family: Arial, sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f4f4f4;
    }

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

    .page-yy77711__section {
        background-color: #fff;
        padding: 40px 20px;
        margin-bottom: 30px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .page-yy77711__heading {
        text-align: center;
        color: #0056b3; /* Darker blue for headings */
        margin-bottom: 30px;
        font-size: 2.5em;
        font-weight: bold;
    }

    .page-yy77711__subheading {
        color: #007bff; /* Primary blue for subheadings */
        margin-bottom: 15px;
        font-size: 1.8em;
    }

    .page-yy77711__text {
        font-size: 1.1em;
        margin-bottom: 15px;
        color: #555;
    }

    /* Hero Section */
    .page-yy77711__hero-section {
        background: linear-gradient(135deg, #007bff, #0056b3);
        color: #fff;
        text-align: center;
        padding: 80px 20px;
        border-radius: 0 0 8px 8px;
        margin-bottom: 30px;
        position: relative;
        overflow: hidden;
    }

    .page-yy77711__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        font-weight: 700;
        line-height: 1.2;
    }

    .page-yy77711__hero-subtitle {
        font-size: 1.8em;
        margin-bottom: 30px;
        font-weight: 300;
    }

    .page-yy77711__promo-banner {
        background-color: #ffc107; /* Yellow for promotions */
        color: #333;
        padding: 15px 25px;
        border-radius: 50px;
        display: inline-block;
        font-size: 1.2em;
        font-weight: bold;
        animation: pulse 1.5s infinite;
        margin-bottom: 30px;
    }

    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }

    .page-yy77711__cta-button {
        display: inline-block;
        background-color: #28a745; /* Green for CTA */
        color: #fff;
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 1.3em;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border: none; /* Use button tag, so ensure no default border */
        cursor: pointer;
    }

    .page-yy77711__cta-button:hover {
        background-color: #218838;
    }

    /* Floating Buttons for Register/Login */
    .page-yy77711__floating-buttons {
        position: fixed;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .page-yy77711__floating-button {
        background-color: #dc3545; /* Red for emphasis */
        color: #fff;
        padding: 12px 20px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: bold;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
    }

    .page-yy77711__floating-button--login {
        background-color: #007bff; /* Blue for login */
    }

    .page-yy77711__floating-button:hover {
        transform: translateY(-2px);
    }

    /* Product Display */
    .page-yy77711__product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        justify-content: center;
        text-align: center;
    }

    .page-yy77711__product-card {
        background-color: #f8f9fa;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
        padding-bottom: 20px;
    }

    .page-yy77711__product-card:hover {
        transform: translateY(-5px);
    }

    .page-yy77711__product-image {
        width: 100%;
        height: 250px; /* Consistent height for product images */
        object-fit: cover;
        margin-bottom: 15px;
    }

    .page-yy77711__product-title {
        font-size: 1.4em;
        color: #0056b3;
        margin-bottom: 10px;
        padding: 0 15px;
    }

    .page-yy77711__product-description {
        font-size: 0.95em;
        color: #666;
        padding: 0 15px;
    }

    /* Payment Methods */
    .page-yy77711__payment-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .page-yy77711__payment-item {
        background-color: #e9ecef;
        padding: 15px 25px;
        border-radius: 50px;
        font-weight: bold;
        color: #333;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        min-width: 120px;
        text-align: center;
    }

    /* FAQ Section */
    .page-yy77711__faq-list {
        list-style: none;
        padding: 0;
    }

    .page-yy77711__faq-item {
        background-color: #f8f9fa;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-sizing: border-box; /* Ensure padding/border are included in width */
    }

    .page-yy77711__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        background-color: #e9ecef;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
        color: #0056b3;
        font-weight: bold;
        box-sizing: border-box;
    }

    .page-yy77711__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-yy77711__faq-question:hover {
        background-color: #dee2e6;
    }

    .page-yy77711__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        margin-left: 15px;
        pointer-events: none; /* Prevent toggle icon from blocking click on parent */
        transition: transform 0.3s ease;
    }

    .page-yy77711__faq-item.active .page-yy77711__faq-toggle {
        transform: rotate(45deg); /* For + to X or - */
    }

    .page-yy77711__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px; /* Initial padding is 0 */
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        color: #555;
        box-sizing: border-box;
    }

    .page-yy77711__faq-item.active .page-yy77711__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 15px !important; /* Expanded padding */
        opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-yy77711__container {
            padding: 10px;
        }

        .page-yy77711__hero-title {
            font-size: 2.5em;
        }

        .page-yy77711__hero-subtitle {
            font-size: 1.4em;
        }

        .page-yy77711__promo-banner {
            font-size: 1em;
            padding: 10px 20px;
        }

        .page-yy77711__cta-button {
            font-size: 1.1em;
            padding: 12px 25px;
        }

        .page-yy77711__floating-buttons {
            flex-direction: row;
            width: 100%;
            bottom: 0;
            top: auto;
            right: 0;
            left: 0;
            transform: none;
            justify-content: space-around;
            padding: 10px 0;
            background-color: rgba(0, 0, 0, 0.8);
            border-top: 1px solid #333;
        }

        .page-yy77711__floating-button {
            flex: 1;
            margin: 0 5px;
            text-align: center;
            padding: 10px 15px;
        }

        .page-yy77711__product-grid {
            grid-template-columns: 1fr;
        }

        .page-yy77711__product-image {
            height: 200px;
        }

        .page-yy77711__payment-item {
            min-width: unset;
            width: calc(50% - 10px);
            padding: 10px 15px;
            font-size: 0.9em;
        }

        /* List item responsive requirements */
        .page-yy77711__faq-list,
        .page-yy77711__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 0 !important; /* Adjust if parent padding is sufficient */
        }
        .page-yy77711__faq-question,
        .page-yy77711__faq-answer {
            padding: 15px !important; /* Ensure content has padding */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-yy77711__faq-item.active .page-yy77711__faq-answer {
            padding: 20px 15px !important; /* Maintain expanded padding */
        }

        /* Image responsive requirements */
        .page-yy77711__product-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-yy77711__product-card {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }

    @media (max-width: 480px) {
        .page-yy77711__floating-buttons {
            flex-direction: column; /* Stack buttons on very small screens */
            gap: 10px;
            padding: 10px;
        }
        .page-yy77711__floating-button {
            width: 100%;
            margin: 0;
        }
    }
  