
    .page-77loc {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0; /* Light grey text */
    background-color: #1a1a2e; /* Dark blue background */
    line-height: 1.6;
    overflow-x: hidden;
}

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

.page-77loc__section-title {
    color: #ffb74d; /* Orange accent */
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-77loc__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffb74d;
    border-radius: 2px;
}

.page-77loc__sub-section-title {
    color: #ffb74d;
    font-size: 1.8em;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-77loc__text-content {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-77loc__brand-highlight {
    color: #ffb74d;
}

/* Hero Section */
.page-77loc__hero-section {
    position: relative;
    width: 100%;
    height: 60vh; /* Responsive height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, relying on body padding for header offset */
}

.page-77loc__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.5); /* Darken background for text readability */
    max-width: 100%; /* Ensure responsiveness */
    height: auto; /* Ensure responsiveness */
}

.page-77loc__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.page-77loc__main-heading {
    font-size: 3em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page-77loc__sub-heading {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

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

.page-77loc__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ffb74d; /* Orange accent */
    color: #1a1a2e; /* Dark text for contrast */
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-77loc__cta-button:hover {
    background-color: #ffa000; /* Darker orange on hover */
    transform: translateY(-3px);
}

.page-77loc__cta-button--secondary {
    background-color: #334257; /* Darker blue */
    color: #ffb74d; /* Orange text */
}

.page-77loc__cta-button--secondary:hover {
    background-color: #4a5d7c;
    color: #ffffff;
}

.page-77loc__cta-button--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

/* Floating Register/Login Buttons */
.page-77loc__floating-buttons {
    position: fixed;
    bottom: 20px;
    width: 100%;
    z-index: 1000;
    pointer-events: none; /* Allow clicks to pass through to elements below */
}

.page-77loc__floating-button-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    pointer-events: all; /* Re-enable pointer events for buttons */
}

.page-77loc__floating-register-button,
.page-77loc__floating-login-button {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1em;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    text-align: center;
}

.page-77loc__floating-register-button {
    background-color: #ffb74d; /* Orange accent */
    color: #1a1a2e; /* Dark text */
}

.page-77loc__floating-register-button:hover {
    background-color: #ffa000;
    transform: translateY(-2px);
}

.page-77loc__floating-login-button {
    background-color: #334257; /* Darker blue */
    color: #ffb74d; /* Orange text */
}

.page-77loc__floating-login-button:hover {
    background-color: #4a5d7c;
    color: #ffffff;
    transform: translateY(-2px);
}


/* About Section */
.page-77loc__about-section {
    padding: 60px 0;
    background-color: #1a1a2e;
}

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

.page-77loc__feature-item {
    background-color: #2a2a4a; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-77loc__feature-item:hover {
    transform: translateY(-10px);
    background-color: #3a3a5a;
}

.page-77loc__feature-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    max-width: 100%; /* Responsive image */
    height: auto; /* Responsive image */
}

.page-77loc__feature-title {
    color: #ffb74d;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-77loc__feature-description {
    font-size: 1em;
    color: #c0c0c0;
}

/* Products Section */
.page-77loc__products-section {
    padding: 60px 0;
    background-color: #1a1a2e;
}

.page-77loc__product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    justify-items: center; /* Center product cards */
}

.page-77loc__product-card {
    background-color: #2a2a4a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 350px; /* Limit card width for larger screens */
    text-align: center;
}

.page-77loc__product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-77loc__product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    max-width: 100%; /* Responsive image */
    height: auto; /* Responsive image */
}

.page-77loc__product-title {
    color: #ffb74d;
    font-size: 1.6em;
    margin: 20px 0 10px;
    padding: 0 15px;
}

.page-77loc__product-description {
    font-size: 0.95em;
    color: #c0c0c0;
    padding: 0 15px 20px;
}

/* Promotions Section */
.page-77loc__promotions-section {
    padding: 60px 0;
    background-color: #1a1a2e;
}

.page-77loc__promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    justify-items: center; /* Center promotion cards */
}

.page-77loc__promotion-card {
    background-color: #2a2a4a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.page-77loc__promotion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-77loc__promotion-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    max-width: 100%; /* Responsive image */
    height: auto; /* Responsive image */
}

.page-77loc__promotion-title {
    color: #ffb74d;
    font-size: 1.6em;
    margin: 20px 0 10px;
    padding: 0 15px;
}

.page-77loc__promotion-description {
    font-size: 0.95em;
    color: #c0c0c0;
    padding: 0 15px;
    margin-bottom: 20px;
}

.page-77loc__promotion-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffb74d;
    color: #1a1a2e;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.95em;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.page-77loc__promotion-button:hover {
    background-color: #ffa000;
}

/* Register Steps Section */
.page-77loc__register-steps-section {
    padding: 60px 0;
    background-color: #1a1a2e;
}

.page-77loc__steps-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-77loc__step-item {
    background-color: #2a2a4a;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box; /* Crucial for list item responsiveness */
}

.page-77loc__step-number {
    background-color: #ffb74d;
    color: #1a1a2e;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-77loc__step-title {
    color: #ffffff;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-77loc__step-description {
    font-size: 1em;
    color: #c0c0c0;
}

.page-77loc__inline-link {
    color: #ffb74d;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-77loc__inline-link:hover {
    color: #ffa000;
    text-decoration: underline;
}

/* Payment & Providers Section */
.page-77loc__payment-providers-section {
    padding: 60px 0;
    background-color: #1a1a2e;
}

.page-77loc__payment-list,
.page-77loc__provider-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.page-77loc__payment-item,
.page-77loc__provider-item {
    background-color: #2a2a4a;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box; /* Crucial for list item responsiveness */
    width: 150px; /* Fixed width for logos */
    height: 100px; /* Fixed height for logos */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-77loc__payment-item:hover,
.page-77loc__provider-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-77loc__payment-link,
.page-77loc__provider-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 0.9em;
    padding: 10px;
    width: 100%;
    height: 100%;
}

.page-77loc__payment-logo,
.page-77loc__provider-logo {
    max-width: 80%;
    max-height: 60px;
    object-fit: contain;
    margin-bottom: 5px;
    filter: grayscale(100%) brightness(1.5); /* Make logos monochrome and slightly brighter */
    transition: filter 0.3s ease;
    max-width: 100%; /* Responsive image */
    height: auto; /* Responsive image */
}

.page-77loc__payment-item:hover .page-77loc__payment-logo,
.page-77loc__provider-item:hover .page-77loc__provider-logo {
    filter: grayscale(0%) brightness(1); /* Restore color on hover */
}


/* FAQ Section */
.page-77loc__faq-section {
    padding: 60px 0;
    background-color: #1a1a2e;
}

.page-77loc__faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.page-77loc__faq-item {
    background-color: #2a2a4a;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-77loc__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
    background-color: #334257; /* Darker blue for question background */
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.page-77loc__faq-question:hover {
    background-color: #4a5d7c;
}

.page-77loc__faq-title {
    font-size: 1.2em;
    margin: 0;
    flex-grow: 1;
    pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-77loc__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent span from blocking click event */
    color: #ffb74d;
}

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

.page-77loc__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    color: #c0c0c0;
    background-color: #2a2a4a; /* Lighter background for answer */
}

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

.page-77loc__faq-answer p {
    margin: 0;
    padding-bottom: 10px; /* Small padding for paragraph spacing */
}

/* Final CTA Section */
.page-77loc__cta-final-section {
    padding: 60px 0;
    background-color: #1a1a2e;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-77loc__main-heading {
        font-size: 2.5em;
    }
    .page-77loc__section-title {
        font-size: 2em;
    }
    .page-77loc__sub-section-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-77loc__hero-section {
        height: 70vh;
    }
    .page-77loc__hero-content {
        padding: 15px;
    }
    .page-77loc__main-heading {
        font-size: 2em;
    }
    .page-77loc__sub-heading {
        font-size: 1.1em;
    }
    .page-77loc__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-77loc__cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-77loc__section-title {
        font-size: 1.8em;
    }
    .page-77loc__text-content {
        font-size: 1em;
    }
    .page-77loc__feature-title,
    .page-77loc__product-title,
    .page-77loc__promotion-title {
        font-size: 1.3em;
    }
    .page-77loc__step-title {
        font-size: 1.3em;
    }
    .page-77loc__faq-title {
        font-size: 1.1em;
    }

    /* List item responsive rules */
    .page-77loc__features-grid,
    .page-77loc__product-grid,
    .page-77loc__promotion-grid,
    .page-77loc__steps-list,
    .page-77loc__payment-list,
    .page-77loc__provider-list {
        grid-template-columns: 1fr; /* Single column layout */
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    .page-77loc__feature-item,
    .page-77loc__product-card,
    .page-77loc__promotion-card,
    .page-77loc__step-item,
    .page-77loc__payment-item,
    .page-77loc__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important; /* Adjust padding for mobile */
        padding-right: 15px !important; /* Adjust padding for mobile */
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-77loc__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;
        word-break: break-word !important;
    }
    .page-77loc__faq-question, .page-77loc__faq-answer {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-77loc__floating-button-wrapper {
        gap: 10px;
    }
    .page-77loc__floating-register-button,
    .page-77loc__floating-login-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-77loc__hero-section {
        height: 80vh;
    }
    .page-77loc__main-heading {
        font-size: 1.8em;
    }
    .page-77loc__sub-heading {
        font-size: 1em;
    }
    .page-77loc__section-title {
        font-size: 1.5em;
    }
    .page-77loc__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-77loc__floating-button-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .page-77loc__floating-register-button,
    .page-77loc__floating-login-button {
        width: 80%;
        max-width: 200px;
    }
}
  