
    :root {
    --page-678-co-primary-color: #FFD700; /* Gold */
    --page-678-co-secondary-color: #000000; /* Black */
    --page-678-co-accent-color: #FF4500; /* OrangeRed */
    --page-678-co-text-color: #E0E0E0; /* Light Gray */
    --page-678-co-dark-text-color: #333333; /* Dark Gray for light backgrounds */
    --page-678-co-background-gradient: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    --page-678-co-button-gradient: linear-gradient(90deg, #FF4500, #FF8C00); /* OrangeRed to DarkOrange */
    --page-678-co-button-hover-gradient: linear-gradient(90deg, #FF8C00, #FF4500);
}

.page-678-co {
    font-family: 'Arial', sans-serif;
    color: var(--page-678-co-text-color);
    background: var(--page-678-co-background-gradient);
    line-height: 1.6;
    padding-top: 10px; /* Small padding top, assuming body handles --header-offset */
}

.page-678-co__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Hero Section */
.page-678-co__hero-section {
    position: relative;
    width: 100%;
    height: 60vh; /* Responsive height */
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 10px;
}

.page-678-co__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 */
    max-width: 100%; /* Responsive image */
}

.page-678-co__hero-overlay {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 800px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.page-678-co__hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: var(--page-678-co-primary-color);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.page-678-co__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--page-678-co-text-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.page-678-co__hero-cta,
.page-678-co__promotions-cta,
.page-678-co__cta-button {
    display: inline-block;
    background: var(--page-678-co-button-gradient);
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-678-co__hero-cta:hover,
.page-678-co__promotions-cta:hover,
.page-678-co__cta-button:hover {
    background: var(--page-678-co-button-hover-gradient);
    transform: translateY(-2px);
}

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

.page-678-co__floating-button {
    background: var(--page-678-co-primary-color);
    color: var(--page-678-co-dark-text-color);
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    min-width: 100px;
}

.page-678-co__floating-button--register {
    background: var(--page-678-co-accent-color);
    color: #FFFFFF;
}

.page-678-co__floating-button--register:hover {
    background: #e63900;
    transform: translateY(-2px);
}

.page-678-co__floating-button--login:hover {
    background: #e0b800;
    transform: translateY(-2px);
}

/* General Section Styling */
.page-678-co__section-title {
    font-size: 2.5em;
    color: var(--page-678-co-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-678-co__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-678-co-accent-color);
    border-radius: 2px;
}

.page-678-co__brand-highlight {
    color: var(--page-678-co-accent-color);
}

.page-678-co__keyword-emphasis {
    color: var(--page-678-co-primary-color);
}

/* About Section */
.page-678-co__about-section {
    padding: 60px 0;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: center;
}

.page-678-co__about-text {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 20px auto;
    padding: 0 15px;
    color: var(--page-678-co-text-color);
}

/* Categories Grid */
.page-678-co__categories-section {
    padding: 60px 0;
    margin-bottom: 40px;
}

.page-678-co__categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-678-co__category-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-678-co__category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-678-co__category-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    max-width: 100%; /* Responsive image */
}

.page-678-co__category-title {
    font-size: 1.8em;
    color: var(--page-678-co-primary-color);
    margin: 20px 0 10px 0;
    padding: 0 15px;
}

.page-678-co__category-description {
    font-size: 1em;
    color: var(--page-678-co-text-color);
    padding: 0 15px 20px 15px;
    flex-grow: 1; /* Ensures consistent height */
}

/* Promotions Section */
.page-678-co__promotions-section {
    padding: 60px 0;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: center;
}

.page-678-co__promotions-intro {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 30px auto;
    padding: 0 15px;
    color: var(--page-678-co-text-color);
}

.page-678-co__promotions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-678-co__promotion-item {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-678-co__promotion-item:hover {
    transform: translateY(-5px);
}

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

.page-678-co__promotion-title {
    font-size: 1.5em;
    color: var(--page-678-co-primary-color);
    margin: 20px 0 10px 0;
    padding: 0 15px;
}

.page-678-co__promotion-description {
    font-size: 1em;
    color: var(--page-678-co-text-color);
    padding: 0 15px 20px 15px;
    flex-grow: 1;
}

/* Why Choose Us Section */
.page-678-co__why-choose-us-section {
    padding: 60px 0;
    margin-bottom: 40px;
}

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

.page-678-co__feature-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-678-co__feature-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.12);
}

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

.page-678-co__feature-title {
    font-size: 1.6em;
    color: var(--page-678-co-primary-color);
    margin-bottom: 10px;
}

.page-678-co__feature-description {
    font-size: 1em;
    color: var(--page-678-co-text-color);
}

/* FAQ Section */
.page-678-co__faq-section {
    padding: 60px 0;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 40px;
}

.page-678-co__faq-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-678-co__faq-item {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-678-co__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    user-select: none;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.page-678-co__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-678-co__faq-title {
    font-size: 1.2em;
    color: var(--page-678-co-primary-color);
    margin: 0;
    pointer-events: none; /* Prevent h3 from blocking click */
}

.page-678-co__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--page-678-co-accent-color);
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent span from blocking click */
}

.page-678-co__faq-item.active .page-678-co__faq-toggle {
    transform: rotate(45deg); /* Change + to X or - */
    color: var(--page-678-co-primary-color);
}

.page-678-co__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;
    color: var(--page-678-co-text-color);
    background-color: rgba(0, 0, 0, 0.4);
}

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

.page-678-co__faq-answer p {
    margin: 0;
    font-size: 1em;
}

/* Call to Action Section */
.page-678-co__cta-section {
    padding: 60px 0 80px 0;
    text-align: center;
}

.page-678-co__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--page-678-co-text-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-678-co__hero-title {
        font-size: 2.8em;
    }
    .page-678-co__hero-description {
        font-size: 1.2em;
    }
    .page-678-co__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-678-co__hero-section {
        height: 50vh;
        min-height: 350px;
    }
    .page-678-co__hero-title {
        font-size: 2.2em;
    }
    .page-678-co__hero-description {
        font-size: 1em;
    }
    .page-678-co__hero-cta,
    .page-678-co__promotions-cta,
    .page-678-co__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-678-co__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    /* Floating buttons adjustment */
    .page-678-co__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Stack horizontally on mobile if preferred, or keep vertical */
        gap: 8px;
    }
    .page-678-co__floating-button {
        padding: 10px 15px;
        font-size: 0.9em;
        min-width: 80px;
    }

    .page-678-co__about-section,
    .page-678-co__categories-section,
    .page-678-co__promotions-section,
    .page-678-co__why-choose-us-section,
    .page-678-co__faq-section,
    .page-678-co__cta-section {
        padding: 40px 0;
        margin-bottom: 30px;
    }

    .page-678-co__categories-grid,
    .page-678-co__promotions-list,
    .page-678-co__features-grid {
        grid-template-columns: 1fr; /* Single column layout for mobile */
        gap: 20px;
    }

    /* List item specific mobile responsive requirements */
    .page-678-co__category-item,
    .page-678-co__promotion-item,
    .page-678-co__feature-item,
    .page-678-co__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        /* padding: 0; */ /* Reset internal padding if any, then re-add below */
    }

    .page-678-co__category-item .page-678-co__category-description,
    .page-678-co__promotion-item .page-678-co__promotion-description,
    .page-678-co__feature-item .page-678-co__feature-description {
        padding-left: 15px;
        padding-right: 15px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    .page-678-co__category-item .page-678-co__category-title,
    .page-678-co__promotion-item .page-678-co__promotion-title,
    .page-678-co__feature-item .page-678-co__feature-title {
        padding-left: 15px;
        padding-right: 15px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .page-678-co__category-image,
    .page-678-co__promotion-image,
    .page-678-co__feature-icon {
        max-width: 100% !important;
        height: auto !important; /* Ensure images scale */
        box-sizing: border-box !important;
    }

    .page-678-co__faq-question {
        padding: 12px 15px;
    }
    .page-678-co__faq-title {
        font-size: 1.1em;
    }
    .page-678-co__faq-answer {
        padding: 0 15px;
    }
    .page-678-co__faq-item.active .page-678-co__faq-answer {
        padding: 15px !important;
    }
}

@media (max-width: 480px) {
    .page-678-co__hero-title {
        font-size: 1.8em;
    }
    .page-678-co__hero-description {
        font-size: 0.9em;
    }
    .page-678-co__section-title {
        font-size: 1.5em;
    }
    .page-678-co__hero-section {
        min-height: 300px;
    }
    .page-678-co__floating-buttons {
        flex-direction: column; /* Back to vertical for very small screens */
        align-items: flex-end;
    }
}

/* Ensure good contrast */
.page-678-co h1, .page-678-co h2, .page-678-co h3, .page-678-co h4, .page-678-co h5, .page-678-co h6 {
    color: var(--page-678-co-primary-color); /* Bright gold on dark background */
}
.page-678-co p, .page-678-co li, .page-678-co strong {
    color: var(--page-678-co-text-color); /* Light gray on dark background */
}
.page-678-co a.page-678-co__hero-cta,
.page-678-co a.page-678-co__promotions-cta,
.page-678-co a.page-678-co__cta-button {
    color: #FFFFFF; /* White text on gradient button */
}
.page-678-co__floating-button--register {
    color: #FFFFFF; /* White text on orange button */
}
.page-678-co__floating-button--login {
    color: var(--page-678-co-dark-text-color); /* Dark text on gold button */
}
.page-678-co__faq-toggle {
    color: var(--page-678-co-accent-color); /* OrangeRed on dark background */
}
.page-678-co__faq-item.active .page-678-co__faq-toggle {
    color: var(--page-678-co-primary-color); /* Gold on dark background */
}
.page-678-co__faq-question {
    background-color: rgba(255, 255, 255, 0.1); /* Light background for question */
    color: var(--page-678-co-primary-color); /* Gold text */
}
.page-678-co__faq-answer {
    background-color: rgba(0, 0, 0, 0.4); /* Dark background for answer */
    color: var(--page-678-co-text-color); /* Light gray text */
}
  