
    /* General styles for the page-90-link scope */
    .page-90-link {
        font-family: 'Arial', sans-serif;
        color: #333;
        background-color: #f8f8f8;
        line-height: 1.6;
        padding-bottom: 80px; /* Space for fixed buttons at bottom */
    }

    .page-90-link__section-title {
        text-align: center;
        color: #2c3e50;
        font-size: 2.2em;
        margin-bottom: 40px;
        padding-top: 20px;
        position: relative;
    }

    .page-90-link__section-title strong {
        color: #e74c3c; /* Accent color for brand */
    }

    .page-90-link__section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background-color: #e74c3c;
        margin: 10px auto 0;
        border-radius: 2px;
    }

    .page-90-link__cta-button {
        display: inline-block;
        background-color: #e74c3c;
        color: #ffffff;
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-90-link__cta-button:hover {
        background-color: #c0392b;
        transform: translateY(-2px);
    }

    .page-90-link__cta-button--large {
        padding: 15px 35px;
        font-size: 1.3em;
    }

    /* Floating Register/Login Buttons */
    .page-90-link__floating-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-around;
        padding: 10px 0;
        background-color: rgba(0, 0, 0, 0.8);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        box-sizing: border-box;
    }

    .page-90-link__register-button,
    .page-90-link__login-button {
        flex: 1;
        text-align: center;
        padding: 12px 0;
        margin: 0 5px;
        border-radius: 8px;
        font-size: 1.1em;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-sizing: border-box;
        color: #ffffff; /* Ensure good contrast */
    }

    .page-90-link__register-button {
        background-color: #27ae60; /* Green for register */
    }

    .page-90-link__register-button:hover {
        background-color: #229954;
        transform: translateY(-2px);
    }

    .page-90-link__login-button {
        background-color: #3498db; /* Blue for login */
    }

    .page-90-link__login-button:hover {
        background-color: #2980b9;
        transform: translateY(-2px);
    }


    /* Hero Section */
    .page-90-link__hero-section {
        position: relative;
        color: #ffffff;
        text-align: center;
        padding-top: 10px; /* Small decorative top padding, body handles header offset */
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 400px;
    }

    .page-90-link__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        filter: brightness(0.6); /* Darken image for text readability */
    }

    .page-90-link__hero-content {
        position: relative;
        z-index: 2;
        padding: 20px;
        max-width: 800px;
        margin: 0 auto;
    }

    .page-90-link__hero-title {
        font-size: 2.8em;
        margin-bottom: 15px;
        line-height: 1.2;
        color: #ffffff; /* Ensure good contrast */
    }

    .page-90-link__hero-title strong {
        color: #f1c40f; /* Yellow accent for brand in title */
    }

    .page-90-link__hero-description {
        font-size: 1.3em;
        margin-bottom: 30px;
        color: #ecf0f1; /* Light grey for description */
    }

    .page-90-link__hero-cta {
        margin-top: 20px;
    }

    /* About Section */
    .page-90-link__about-section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
        background-color: #ffffff;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
        border-radius: 8px;
        margin-top: 30px;
    }

    .page-90-link__about-content p {
        margin-bottom: 15px;
        font-size: 1.1em;
        color: #555;
        text-align: justify;
    }

    .page-90-link__about-content strong {
        color: #e74c3c;
    }

    /* Products Section */
    .page-90-link__products-section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 30px auto;
    }

    .page-90-link__product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-bottom: 40px;
    }

    .page-90-link__product-item {
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
    }

    .page-90-link__product-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-90-link__product-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-bottom: 1px solid #eee;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-90-link__product-title {
        font-size: 1.5em;
        color: #2c3e50;
        margin: 15px 10px 10px;
        flex-grow: 1;
    }

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

    /* Promotions Section */
    .page-90-link__promotions-section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 30px auto;
        background-color: #f0f4f7;
        border-radius: 8px;
    }

    .page-90-link__promotion-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-bottom: 40px;
    }

    .page-90-link__promotion-item {
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
    }

    .page-90-link__promotion-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-90-link__promotion-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-bottom: 1px solid #eee;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-90-link__promotion-title {
        font-size: 1.4em;
        color: #2c3e50;
        margin: 15px 10px 10px;
        flex-grow: 1;
    }

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

    /* News Section */
    .page-90-link__news-section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 30px auto;
    }

    .page-90-link__news-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-bottom: 40px;
    }

    .page-90-link__news-item {
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
    }

    .page-90-link__news-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-90-link__news-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-bottom: 1px solid #eee;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-90-link__news-title {
        font-size: 1.4em;
        color: #2c3e50;
        margin: 15px 10px 5px;
        flex-grow: 1;
    }

    .page-90-link__news-date {
        font-size: 0.85em;
        color: #999;
        margin: 0 10px 10px;
    }

    .page-90-link__news-excerpt {
        font-size: 0.95em;
        color: #666;
        padding: 0 15px 20px;
    }

    /* CTA Section Reusable */
    .page-90-link__cta-section {
        text-align: center;
        padding: 30px 20px;
        background-color: #ecf0f1;
        border-radius: 8px;
        margin-top: 40px;
    }

    .page-90-link__cta-text {
        font-size: 1.2em;
        color: #34495e;
        margin-bottom: 25px;
    }

    /* Providers & Payments Section */
    .page-90-link__providers-payments-section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 30px auto;
        background-color: #ffffff;
        border-radius: 8px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    }

    .page-90-link__subsection {
        margin-bottom: 30px;
    }

    .page-90-link__subsection-title {
        text-align: center;
        font-size: 1.8em;
        color: #34495e;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 10px;
    }

    .page-90-link__subsection-title::after {
        content: '';
        display: block;
        width: 40px;
        height: 3px;
        background-color: #3498db;
        margin: 10px auto 0;
        border-radius: 1.5px;
    }

    .page-90-link__logos-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        justify-items: center;
        align-items: center;
    }

    .page-90-link__logo-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #555;
        font-size: 0.9em;
        font-weight: bold;
        transition: transform 0.2s ease;
        box-sizing: border-box;
        width: 100%; /* Ensure it takes full grid cell width */
        padding: 10px; /* Add padding for better spacing */
    }

    .page-90-link__logo-item:hover {
        transform: translateY(-3px);
        color: #e74c3c;
    }

    .page-90-link__logo-image {
        width: 100%;
        max-width: 120px; /* Adjusted max-width for logos */
        height: auto;
        object-fit: contain;
        margin-bottom: 8px;
        border-radius: 5px;
        border: 1px solid #f0f0f0;
        padding: 5px;
        box-sizing: border-box;
    }

    /* FAQ Section */
    .page-90-link__faq-section {
        padding: 40px 20px;
        max-width: 900px;
        margin: 30px auto;
        background-color: #ffffff;
        border-radius: 8px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    }

    .page-90-link__faq-container {
        margin-top: 20px;
    }

    .page-90-link__faq-item {
        border: 1px solid #ddd;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-90-link__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #f5f5f5;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
        box-sizing: border-box;
    }

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

    .page-90-link__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: #333;
        pointer-events: none; /* Crucial for FAQ JS */
        flex-grow: 1;
        text-align: left; /* Ensure text aligns left */
    }

    .page-90-link__faq-question h3 strong {
        color: #e74c3c;
    }

    .page-90-link__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #e74c3c;
        margin-left: 15px;
        pointer-events: none; /* Crucial for FAQ JS */
        transition: transform 0.3s ease;
    }

    .page-90-link__faq-item.active .page-90-link__faq-toggle {
        transform: rotate(45deg); /* Change + to X or - */
        color: #2c3e50;
    }

    .page-90-link__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px; /* Initial padding */
        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: #ffffff;
        box-sizing: border-box;
    }

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

    .page-90-link__faq-answer p {
        margin: 0;
        font-size: 1em;
        color: #555;
        text-align: justify;
    }

    /* Contact CTA Section */
    .page-90-link__contact-cta-section {
        padding: 50px 20px;
        text-align: center;
        background-color: #2c3e50;
        color: #ffffff;
        margin-top: 50px;
    }

    .page-90-link__contact-cta-section .page-90-link__section-title {
        color: #ffffff;
        margin-bottom: 20px;
    }

    .page-90-link__contact-cta-section .page-90-link__section-title::after {
        background-color: #f1c40f;
    }

    .page-90-link__contact-cta-section .page-90-link__cta-text {
        color: #ecf0f1;
        font-size: 1.3em;
        margin-bottom: 30px;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-90-link__hero-title {
            font-size: 2.5em;
        }
        .page-90-link__hero-description {
            font-size: 1.1em;
        }
        .page-90-link__section-title {
            font-size: 2em;
        }
        .page-90-link__product-grid,
        .page-90-link__promotion-grid,
        .page-90-link__news-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }
    }

    @media (max-width: 768px) {
        .page-90-link__hero-section {
            min-height: 350px;
        }
        .page-90-link__hero-title {
            font-size: 2em;
        }
        .page-90-link__hero-description {
            font-size: 1em;
        }
        .page-90-link__cta-button {
            padding: 10px 20px;
            font-size: 1em;
        }
        .page-90-link__cta-button--large {
            padding: 12px 25px;
            font-size: 1.1em;
        }
        .page-90-link__section-title {
            font-size: 1.8em;
        }
        .page-90-link__about-content p {
            font-size: 1em;
        }
        .page-90-link__product-grid,
        .page-90-link__promotion-grid,
        .page-90-link__news-grid {
            grid-template-columns: 1fr; /* Stack items on small screens */
        }
        .page-90-link__product-item,
        .page-90-link__promotion-item,
        .page-90-link__news-item,
        .page-90-link__logo-item,
        .page-90-link__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }
        .page-90-link__product-image,
        .page-90-link__promotion-image,
        .page-90-link__news-image,
        .page-90-link__logo-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-90-link__logos-grid {
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 15px;
        }
        .page-90-link__logo-image {
            max-width: 100px;
        }
        .page-90-link__faq-question {
            padding: 12px 15px;
        }
        .page-90-link__faq-question h3 {
            font-size: 1.1em;
        }
        .page-90-link__faq-answer {
            padding: 0 15px;
        }
        .page-90-link__faq-item.active .page-90-link__faq-answer {
            padding: 15px 15px !important;
        }
        .page-90-link__floating-buttons {
            padding: 8px 0;
        }
        .page-90-link__register-button,
        .page-90-link__login-button {
            padding: 10px 0;
            font-size: 1em;
        }
    }

    @media (max-width: 480px) {
        .page-90-link__hero-title {
            font-size: 1.8em;
        }
        .page-90-link__hero-description {
            font-size: 0.9em;
        }
        .page-90-link__section-title {
            font-size: 1.5em;
        }
        .page-90-link__cta-text {
            font-size: 1em;
        }
        .page-90-link__logos-grid {
            grid-template-columns: repeat(2, 1fr); /* 2 columns on very small screens */
        }
        .page-90-link__logo-image {
            max-width: 80px;
        }
        .page-90-link__faq-question h3 {
            font-size: 1em;
        }
    }
  