
    .page-tilebong {
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f8f8f8;
        padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-tilebong__section-title {
        font-size: 2.5em;
        color: #2c3e50;
        text-align: center;
        margin-bottom: 40px;
        padding: 0 15px;
        font-weight: 700;
        line-height: 1.2;
    }

    .page-tilebong__hero-section {
        position: relative;
        width: 100%;
        min-height: 500px; /* Increased min-height */
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-align: center;
        overflow: hidden;
        padding-top: 10px; /* Minimal padding-top as body has offset */
        padding-bottom: 60px; /* Ensure content is not too low */
    }

    .page-tilebong__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .page-tilebong__hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 2;
    }

    .page-tilebong__hero-content {
        position: relative;
        z-index: 3;
        max-width: 900px;
        padding: 20px;
    }

    .page-tilebong__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        font-weight: 700;
        line-height: 1.2;
        color: #ffcc00; /* Gold color for title */
    }

    .page-tilebong__hero-description {
        font-size: 1.2em;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-tilebong__hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    .page-tilebong__button {
        padding: 12px 25px;
        border: none;
        border-radius: 5px;
        font-size: 1.1em;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        font-weight: 600;
    }

    .page-tilebong__button--primary {
        background-color: #ffcc00;
        color: #333;
    }

    .page-tilebong__button--primary:hover {
        background-color: #e6b800;
        transform: translateY(-2px);
    }

    .page-tilebong__button--secondary {
        background-color: rgba(255, 255, 255, 0.2);
        color: #fff;
        border: 1px solid #ffcc00;
    }

    .page-tilebong__button--secondary:hover {
        background-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }

    .page-tilebong__button--promo {
        background-color: #007bff; /* A distinct blue for promo buttons */
        color: #fff;
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-tilebong__button--promo:hover {
        background-color: #0056b3;
    }

    .page-tilebong__about-section,
    .page-tilebong__products-section,
    .page-tilebong__promo-section,
    .page-tilebong__providers-section,
    .page-tilebong__payment-section,
    .page-tilebong__faq-section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-tilebong__about-content {
        max-width: 800px;
        margin: 0 auto 30px auto;
        text-align: center;
        font-size: 1.1em;
        color: #555;
    }

    .page-tilebong__about-content p {
        margin-bottom: 15px;
    }

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

    .page-tilebong__product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        justify-content: center;
    }

    .page-tilebong__product-item {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-tilebong__product-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .page-tilebong__product-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-bottom: 1px solid #eee;
        max-width: 100%; /* For mobile responsiveness */
        box-sizing: border-box;
    }

    .page-tilebong__product-title {
        font-size: 1.5em;
        color: #2c3e50;
        margin: 20px 15px 10px;
        font-weight: 600;
    }

    .page-tilebong__product-description {
        font-size: 0.95em;
        color: #666;
        padding: 0 15px 20px;
        flex-grow: 1; /* Ensure descriptions take available space */
    }

    .page-tilebong__promo-card {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        margin-bottom: 30px;
        display: flex;
        align-items: center;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-tilebong__promo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .page-tilebong__promo-image {
        width: 40%;
        height: auto;
        object-fit: cover;
        max-width: 100%; /* For mobile responsiveness */
        box-sizing: border-box;
    }

    .page-tilebong__promo-content {
        padding: 30px;
        width: 60%;
    }

    .page-tilebong__promo-title {
        font-size: 1.8em;
        color: #2c3e50;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .page-tilebong__promo-description {
        font-size: 1em;
        color: #555;
        margin-bottom: 20px;
    }

    .page-tilebong__providers-grid,
    .page-tilebong__payment-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        justify-content: center;
    }

    .page-tilebong__provider-item,
    .page-tilebong__payment-item {
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        padding: 20px;
        text-align: center;
        transition: transform 0.2s ease;
        box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-tilebong__provider-item:hover,
    .page-tilebong__payment-item:hover {
        transform: translateY(-3px);
    }

    .page-tilebong__provider-logo,
    .page-tilebong__payment-logo {
        max-width: 100%;
        height: 60px; /* Consistent height for logos */
        object-fit: contain;
        margin-bottom: 10px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }

    .page-tilebong__provider-name,
    .page-tilebong__payment-name {
        font-size: 0.9em;
        color: #444;
        font-weight: 500;
    }

    .page-tilebong__faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .page-tilebong__faq-item {
        background-color: #fff;
        border-radius: 8px;
        margin-bottom: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }

    .page-tilebong__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #f0f0f0;
        border-bottom: 1px solid #eee;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-tilebong__faq-question:hover {
        background-color: #e0e0e0;
    }

    .page-tilebong__faq-item.active .page-tilebong__faq-question {
        background-color: #e0e0e0;
    }

    .page-tilebong__faq-q-text {
        font-size: 1.2em;
        color: #2c3e50;
        margin: 0;
        flex-grow: 1;
        pointer-events: none; /* Prevent h3 from blocking click event */
        font-weight: 600;
    }

    .page-tilebong__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #007bff;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent span from blocking click event */
    }

    .page-tilebong__faq-item.active .page-tilebong__faq-toggle {
        transform: rotate(45deg); /* Change + to X or similar */
        content: "−"; /* Visually change to minus, handled by JS */
    }

    .page-tilebong__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        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: #fdfdfd;
    }

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

    .page-tilebong__faq-answer p {
        margin: 0 0 10px 0;
        color: #555;
    }

    .page-tilebong__faq-answer p:last-child {
        margin-bottom: 0;
    }

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

    .page-tilebong__floating-button {
        padding: 12px 20px;
        border: none;
        border-radius: 50px;
        font-size: 1.1em;
        font-weight: bold;
        color: #fff;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease, transform 0.2s ease;
        min-width: 120px;
        text-align: center;
    }

    .page-tilebong__floating-button--register {
        background-color: #ffcc00; /* Gold */
        color: #333;
    }

    .page-tilebong__floating-button--register:hover {
        background-color: #e6b800;
        transform: translateY(-2px);
    }

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

    .page-tilebong__floating-button--login:hover {
        background-color: #0056b3;
        transform: translateY(-2px);
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
        .page-tilebong__hero-title {
            font-size: 2.8em;
        }
        .page-tilebong__hero-description {
            font-size: 1.1em;
        }
        .page-tilebong__promo-card {
            flex-direction: column;
        }
        .page-tilebong__promo-image,
        .page-tilebong__promo-content {
            width: 100%;
        }
        .page-tilebong__promo-content {
            padding: 20px;
        }
        .page-tilebong__promo-title {
            font-size: 1.5em;
        }
    }

    @media (max-width: 768px) {
        .page-tilebong__section-title {
            font-size: 2em;
            margin-bottom: 30px;
        }
        .page-tilebong__hero-section {
            min-height: 400px;
        }
        .page-tilebong__hero-title {
            font-size: 2.2em;
        }
        .page-tilebong__hero-description {
            font-size: 1em;
        }
        .page-tilebong__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }
        .page-tilebong__button {
            width: 80%;
            margin: 0 auto;
        }

        .page-tilebong__about-section,
        .page-tilebong__products-section,
        .page-tilebong__promo-section,
        .page-tilebong__providers-section,
        .page-tilebong__payment-section,
        .page-tilebong__faq-section {
            padding: 40px 15px;
        }

        /* List item specific mobile responsiveness */
        .page-tilebong__product-item,
        .page-tilebong__provider-item,
        .page-tilebong__payment-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 15px !important; /* Adjusted padding */
        }

        .page-tilebong__product-grid,
        .page-tilebong__providers-grid,
        .page-tilebong__payment-grid {
            grid-template-columns: 1fr;
            gap: 20px;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        
        .page-tilebong__product-description {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-tilebong__product-image,
        .page-tilebong__promo-image,
        .page-tilebong__about-image,
        .page-tilebong__provider-logo,
        .page-tilebong__payment-logo {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-tilebong__faq-question {
            padding: 15px 20px;
        }
        .page-tilebong__faq-q-text {
            font-size: 1.1em;
        }
        .page-tilebong__faq-answer {
            padding: 0 20px;
        }
        .page-tilebong__faq-item.active .page-tilebong__faq-answer {
            padding: 15px 20px !important;
        }

        .page-tilebong__floating-buttons {
            flex-direction: row;
            width: calc(100% - 40px); /* 100% minus right/left padding */
            left: 20px;
            right: 20px;
            bottom: 15px;
            justify-content: space-around;
            gap: 10px;
        }
        .page-tilebong__floating-button {
            flex: 1;
            min-width: unset;
            font-size: 1em;
            padding: 10px 15px;
        }
    }

    @media (max-width: 480px) {
        .page-tilebong__hero-title {
            font-size: 1.8em;
        }
        .page-tilebong__hero-description {
            font-size: 0.9em;
        }
        .page-tilebong__section-title {
            font-size: 1.8em;
        }
        .page-tilebong__promo-title {
            font-size: 1.3em;
        }
    }
  