
    :root {
        --primary-color: #FFD700; /* Gold */
        --secondary-color: #00008B; /* Dark Blue */
        --accent-color: #FF4500; /* OrangeRed */
        --text-dark: #333333;
        --text-light: #ffffff;
        --background-light: #f4f7fa;
        --background-dark: #1a1a2e;
        --border-color: #e0e0e0;
        --hover-color: #FFA500; /* Orange */
    }

    /* Base styles for the page, scoped to .page-68gb-web */
    .page-68gb-web {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: var(--text-dark);
        background-color: var(--background-light);
        padding-bottom: 80px; /* Space for floating buttons */
        padding-top: 10px; /* Small top padding, assuming body handles header offset */
    }

    /* General section styling */
    .page-68gb-web__section {
        padding: 40px 20px;
        margin-bottom: 20px;
        background-color: var(--text-light);
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-68gb-web__section--dark {
        background-color: var(--background-dark);
        color: var(--text-light);
    }

    .page-68gb-web__section-title {
        font-size: 2.5em;
        color: var(--secondary-color);
        text-align: center;
        margin-bottom: 30px;
        font-weight: bold;
    }

    .page-68gb-web__section--dark .page-68gb-web__section-title {
        color: var(--primary-color);
    }

    .page-68gb-web__section-subtitle {
        font-size: 1.5em;
        color: var(--accent-color);
        text-align: center;
        margin-bottom: 20px;
    }

    .page-68gb-web__text-center {
        text-align: center;
    }

    /* Hero Section */
    .page-68gb-web__hero-section {
        background-color: var(--background-dark);
        color: var(--text-light);
        padding: 60px 20px;
        text-align: center;
        position: relative;
        overflow: hidden;
        border-radius: 0; /* No border-radius for hero */
        box-shadow: none;
        margin-bottom: 0;
    }

    .page-68gb-web__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
        z-index: 0;
    }

    .page-68gb-web__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-68gb-web__hero-title {
        font-size: 3.5em;
        color: var(--primary-color);
        margin-bottom: 15px;
        font-weight: bold;
        line-height: 1.2;
    }

    .page-68gb-web__hero-subtitle {
        font-size: 1.8em;
        margin-bottom: 30px;
        color: var(--text-light);
    }

    .page-68gb-web__hero-description {
        font-size: 1.1em;
        margin-bottom: 40px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-68gb-web__cta-button {
        display: inline-block;
        background-color: var(--accent-color);
        color: var(--text-light);
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
        outline: none;
    }

    .page-68gb-web__cta-button:hover {
        background-color: var(--hover-color);
    }

    /* Floating Register/Login Buttons */
    .page-68gb-web__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-68gb-web__floating-button {
        background-color: var(--primary-color);
        color: var(--secondary-color);
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-align: center;
        min-width: 120px;
    }

    .page-68gb-web__floating-button--login {
        background-color: var(--secondary-color);
        color: var(--primary-color);
    }

    .page-68gb-web__floating-button:hover {
        background-color: var(--hover-color);
        transform: translateY(-3px);
    }
    .page-68gb-web__floating-button--login:hover {
        background-color: #000066; /* Darker blue */
        transform: translateY(-3px);
    }

    /* Product Showcase */
    .page-68gb-web__product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        justify-content: center; /* Center items in the grid */
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-68gb-web__product-card {
        background-color: var(--text-light);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center; /* Center content vertically */
    }

    .page-68gb-web__product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .page-68gb-web__product-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        max-width: 100%;
        display: block;
        border-bottom: 2px solid var(--primary-color);
    }

    .page-68gb-web__product-content {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .page-68gb-web__product-title {
        font-size: 1.5em;
        color: var(--secondary-color);
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-68gb-web__product-description {
        font-size: 0.95em;
        color: var(--text-dark);
        margin-bottom: 15px;
    }

    /* Promotions Section */
    .page-68gb-web__promo-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .page-68gb-web__promo-item {
        display: flex;
        align-items: center;
        gap: 20px;
        background-color: var(--text-light);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }

    .page-68gb-web__promo-item--reversed {
        flex-direction: row-reverse;
    }

    .page-68gb-web__promo-image {
        flex: 0 0 250px;
        height: 180px;
        object-fit: cover;
        border-radius: 8px;
        max-width: 100%;
    }

    .page-68gb-web__promo-content {
        flex: 1;
    }

    .page-68gb-web__promo-title {
        font-size: 1.8em;
        color: var(--secondary-color);
        margin-bottom: 10px;
    }

    .page-68gb-web__promo-text {
        font-size: 1.1em;
        color: var(--text-dark);
        margin-bottom: 15px;
    }

    /* Why Choose Us Section */
    .page-68gb-web__feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .page-68gb-web__feature-card {
        background-color: var(--text-light);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s ease;
    }

    .page-68gb-web__feature-card:hover {
        transform: translateY(-5px);
    }

    .page-68gb-web__feature-icon {
        width: 200px; /* Min size 200x200 as per requirements */
        height: 200px;
        margin: 0 auto 20px auto; /* Center the image */
        object-fit: contain;
        max-width: 100%;
        display: block;
    }

    .page-68gb-web__feature-title {
        font-size: 1.4em;
        color: var(--secondary-color);
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-68gb-web__feature-description {
        font-size: 1em;
        color: var(--text-dark);
    }

    /* FAQ Section */
    .page-68gb-web__faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .page-68gb-web__faq-item {
        background-color: var(--text-light);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-68gb-web__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 20px;
        cursor: pointer;
        background-color: var(--background-light);
        color: var(--secondary-color);
        font-weight: bold;
        font-size: 1.15em;
        transition: background-color 0.3s ease;
    }

    .page-68gb-web__faq-question:hover {
        background-color: #e9ecef;
    }

    .page-68gb-web__faq-question h3 {
        margin: 0;
        font-size: 1.15em;
        color: var(--secondary-color);
        pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-68gb-web__faq-toggle {
        font-size: 1.8em;
        line-height: 1;
        margin-left: 15px;
        color: var(--accent-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-68gb-web__faq-item.active .page-68gb-web__faq-toggle {
        transform: rotate(45deg); /* Plus to X (minus) */
    }

    .page-68gb-web__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(--text-light);
        color: var(--text-dark);
        font-size: 1em;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-68gb-web {
            padding-left: 15px;
            padding-right: 15px;
        }

        .page-68gb-web__hero-title {
            font-size: 2.5em;
        }

        .page-68gb-web__hero-subtitle {
            font-size: 1.4em;
        }

        .page-68gb-web__section-title {
            font-size: 2em;
        }

        .page-68gb-web__section-subtitle {
            font-size: 1.2em;
        }

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

        .page-68gb-web__product-grid {
            grid-template-columns: 1fr;
        }

        .page-68gb-web__promo-item {
            flex-direction: column;
            text-align: center;
        }

        .page-68gb-web__promo-item--reversed {
            flex-direction: column; /* Reset for mobile */
        }

        .page-68gb-web__promo-image {
            flex: none;
            width: 100%;
            height: 250px; /* Adjust height for better mobile viewing */
            margin-bottom: 15px;
        }

        .page-68gb-web__promo-content {
            padding: 0;
        }

        .page-68gb-web__promo-title {
            font-size: 1.5em;
        }

        .page-68gb-web__promo-text {
            font-size: 0.95em;
        }

        .page-68gb-web__feature-grid {
            grid-template-columns: 1fr;
        }

        .page-68gb-web__floating-buttons {
            flex-direction: row;
            width: calc(100% - 40px);
            left: 20px;
            right: 20px;
            bottom: 15px;
            justify-content: space-around;
        }

        .page-68gb-web__floating-button {
            flex: 1;
            padding: 10px 15px;
            font-size: 1em;
            min-width: unset;
        }

        /* All images must be responsive */
        .page-68gb-web img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        /* Specific image containers/images */
        .page-68gb-web__product-image,
        .page-68gb-web__promo-image,
        .page-68gb-web__feature-icon {
            max-width: 100% !important;
            height: auto !important; /* Maintain aspect ratio */
            box-sizing: border-box !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        /* List item responsiveness for product grid */
        .page-68gb-web__product-card {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 0 !important; /* Card itself might have padding, adjust if needed */
        }
        .page-68gb-web__product-content {
             padding: 15px !important;
        }

        /* FAQ responsive adjustments */
        .page-68gb-web__faq-question,
        .page-68gb-web__faq-answer {
            padding-left: 15px !important;
            padding-right: 15px !important;
        }
        .page-68gb-web__faq-question h3 {
            font-size: 1em;
        }
        .page-68gb-web__faq-toggle {
            font-size: 1.5em;
        }
    }

    @media (max-width: 480px) {
        .page-68gb-web__hero-title {
            font-size: 2em;
        }
        .page-68gb-web__hero-subtitle {
            font-size: 1.2em;
        }
        .page-68gb-web__section-title {
            font-size: 1.8em;
        }
    }
  