
    /* General styling for the page-hit-2 scope */
.page-hit-2 {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0; /* Light gray text for dark background */
    background-color: #1a1a2e; /* Dark blue background */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.page-hit-2__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-hit-2__section-title {
    font-size: 2.5em;
    color: #e94560; /* Vibrant red/pink for titles */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px; /* Ensure space above title */
    font-weight: bold;
}

.page-hit-2__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #b0b0b0;
}

.page-hit-2__highlight {
    color: #00bcd4; /* Cyan/teal for highlight */
    font-weight: bold;
}

.page-hit-2__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    text-align: center;
}

.page-hit-2__button--primary {
    background-color: #e94560; /* Red/pink primary button */
    color: #ffffff;
}

.page-hit-2__button--primary:hover {
    background-color: #d1304a;
    transform: translateY(-2px);
}

.page-hit-2__button--secondary {
    background-color: #00bcd4; /* Cyan/teal secondary button */
    color: #ffffff;
}

.page-hit-2__button--secondary:hover {
    background-color: #00a3bb;
    transform: translateY(-2px);
}

.page-hit-2__button--large {
    padding: 15px 30px;
    font-size: 1.2em;
}

.page-hit-2__text-muted {
    font-size: 0.9em;
    color: #888;
    margin-top: 15px;
}

/* Floating Buttons */
.page-hit-2__floating-buttons {
    position: fixed;
    top: calc(var(--header-offset, 122px) + 10px); /* Account for header and add a small gap */
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.page-hit-2__floating-buttons .page-hit-2__button {
    min-width: 120px;
    background-color: #e94560;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid #d1304a;
}

.page-hit-2__floating-buttons .page-hit-2__button--login {
    background-color: #00bcd4;
    border: 1px solid #00a3bb;
}

.page-hit-2__floating-buttons .page-hit-2__button:hover {
    transform: scale(1.05);
}

/* Hero Section */
.page-hit-2__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 80vh;
    padding: calc(var(--header-offset, 122px) + 10px) 20px 60px 20px; /* Account for fixed header, add 10px top padding */
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    position: relative;
    overflow: hidden;
}

.page-hit-2__hero-content {
    max-width: 900px;
    z-index: 1;
    margin-bottom: 40px;
}

.page-hit-2__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.page-hit-2__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-hit-2__hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.page-hit-2__hero-image-container {
    width: 100%;
    max-width: 1000px; /* Centered product image */
    margin-top: 30px;
    text-align: center;
    z-index: 1;
}

.page-hit-2__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: inline-block; /* To center it */
}

/* About Section */
.page-hit-2__about-section {
    background-color: #242440;
    padding: 80px 0;
}

.page-hit-2__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-hit-2__feature-item {
    background-color: #1a1a2e;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.page-hit-2__feature-item:hover {
    transform: translateY(-10px);
}

.page-hit-2__feature-icon {
    max-width: 200px; /* Minimum 200x200 */
    height: auto;
    margin-bottom: 20px;
}

.page-hit-2__feature-title {
    font-size: 1.6em;
    color: #00bcd4;
    margin-bottom: 15px;
}

.page-hit-2__feature-text {
    font-size: 1em;
    color: #b0b0b0;
}

/* Products Section */
.page-hit-2__products-section {
    background-color: #1a1a2e;
    padding: 80px 0;
}

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

.page-hit-2__product-card {
    background-color: #242440;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    text-align: center; /* Center content within card */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items vertically */
    padding-bottom: 20px; /* Add padding below text */
}

.page-hit-2__product-card:hover {
    transform: translateY(-10px);
}

.page-hit-2__product-image {
    width: 100%;
    height: 200px; /* Fixed height for consistent look */
    object-fit: cover;
    margin-bottom: 15px;
    display: block; /* Ensure no extra space below image */
}

.page-hit-2__product-title {
    font-size: 1.8em;
    color: #e94560;
    margin: 0 15px 10px 15px; /* Adjust margin for text */
}

.page-hit-2__product-text {
    font-size: 0.95em;
    color: #b0b0b0;
    padding: 0 15px;
}

/* Providers Section */
.page-hit-2__providers-section {
    background-color: #242440;
    padding: 80px 0;
}

.page-hit-2__provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Min size 200px for images */
    gap: 20px;
    margin-top: 50px;
    justify-items: center; /* Center items in grid */
}

.page-hit-2__provider-item {
    text-align: center;
    padding: 20px;
    background-color: #1a1a2e;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

.page-hit-2__provider-logo {
    max-width: 100%;
    height: auto;
    max-height: 100px; /* Keep logo height reasonable */
    object-fit: contain;
    margin-bottom: 10px;
}

.page-hit-2__provider-name {
    font-size: 1em;
    color: #e0e0e0;
    font-weight: bold;
}

/* Promotions Section */
.page-hit-2__promo-section {
    background-color: #1a1a2e;
    padding: 80px 0;
}

.page-hit-2__promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-hit-2__promo-card {
    background-color: #242440;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.page-hit-2__promo-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 15px;
}

.page-hit-2__promo-title {
    font-size: 1.8em;
    color: #e94560;
    margin: 0 15px 10px 15px;
}

.page-hit-2__promo-text {
    font-size: 0.95em;
    color: #b0b0b0;
    padding: 0 15px;
}

.page-hit-2__cta-button-wrapper {
    text-align: center;
    margin-top: 50px;
}

/* FAQ Section */
.page-hit-2__faq-section {
    background-color: #242440;
    padding: 80px 0;
}

.page-hit-2__faq-list {
    max-width: 900px;
    margin: 50px auto 0 auto;
}

.page-hit-2__faq-item {
    background-color: #1a1a2e;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-hit-2__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #1a1a2e;
    color: #e0e0e0;
    font-size: 1.2em;
    font-weight: bold;
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-hit-2__faq-question:hover {
    background-color: #2a2a4e;
}

.page-hit-2__faq-question-title {
    margin: 0;
    font-size: 1.2em;
    color: #e0e0e0;
    pointer-events: none; /* Prevent text from blocking click event */
}

.page-hit-2__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #e94560;
    transition: transform 0.3s ease;
    pointer-events: none; /* Prevent toggle from blocking click event */
}

.page-hit-2__faq-item.active .page-hit-2__faq-toggle {
    transform: rotate(45deg); /* Change + to X or - */
    color: #00bcd4;
}

.page-hit-2__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;
    color: #b0b0b0;
}

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

.page-hit-2__faq-answer p {
    margin: 0;
    padding-bottom: 10px; /* Add some padding at the bottom of the answer */
}

/* Bottom CTA Section */
.page-hit-2__cta-bottom-section {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
    padding: 80px 0;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-hit-2__hero-title {
        font-size: 3em;
    }
    .page-hit-2__hero-description {
        font-size: 1.2em;
    }
    .page-hit-2__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-hit-2__floating-buttons {
        top: calc(var(--header-offset, 122px) + 5px); /* Smaller gap on mobile */
        right: 10px;
        flex-direction: row; /* Buttons side-by-side on mobile */
        width: auto;
        gap: 5px;
    }
    .page-hit-2__floating-buttons .page-hit-2__button {
        min-width: unset; /* Allow buttons to shrink */
        padding: 8px 15px;
        font-size: 0.9em;
    }

    .page-hit-2__hero-section {
        padding-top: calc(var(--header-offset, 122px) + 20px);
        min-height: auto;
    }
    .page-hit-2__hero-content {
        margin-bottom: 20px;
    }
    .page-hit-2__hero-title {
        font-size: 2.2em;
    }
    .page-hit-2__hero-description {
        font-size: 1em;
    }
    .page-hit-2__hero-cta {
        flex-direction: column;
    }

    .page-hit-2__section-title {
        font-size: 1.8em;
        padding-top: 30px;
    }
    .page-hit-2__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    /* General image responsiveness */
    .page-hit-2__hero-image,
    .page-hit-2__feature-icon,
    .page-hit-2__product-image,
    .page-hit-2__provider-logo,
    .page-hit-2__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    /* Ensure image containers also adapt */
    .page-hit-2__hero-image-container,
    .page-hit-2__feature-item,
    .page-hit-2__product-card,
    .page-hit-2__provider-item,
    .page-hit-2__promo-card {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        padding-left: 10px !important; /* Add some side padding to containers */
        padding-right: 10px !important;
    }

    /* List specific responsiveness (features grid, product grid, provider grid, promo cards, faq list) */
    .page-hit-2__features-grid,
    .page-hit-2__product-grid,
    .page-hit-2__provider-grid,
    .page-hit-2__promo-cards {
        grid-template-columns: 1fr; /* Single column layout */
        padding: 0 10px; /* Adjust padding for grid containers */
    }

    .page-hit-2__feature-item,
    .page-hit-2__product-card,
    .page-hit-2__provider-item,
    .page-hit-2__promo-card {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for items */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-hit-2__faq-list {
        padding: 0 10px; /* Adjust padding for faq list container */
    }
    .page-hit-2__faq-item {
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }
    .page-hit-2__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-hit-2__faq-question-title {
        font-size: 1.1em;
    }
    .page-hit-2__faq-answer {
        padding: 15px 20px !important; /* Adjust padding for answers */
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-hit-2__hero-title {
        font-size: 1.8em;
    }
    .page-hit-2__hero-description {
        font-size: 0.9em;
    }
    .page-hit-2__section-title {
        font-size: 1.5em;
    }
    .page-hit-2__button {
        font-size: 1em;
        padding: 10px 20px;
    }
    .page-hit-2__button--large {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}
  