.page-resources-w88-latest-alternative-links {
    color: #ffffff; /* Body background is dark, so text is light */
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

.page-resources-w88-latest-alternative-links__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is not covered by fixed header */
}

.page-resources-w88-latest-alternative-links__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-resources-w88-latest-alternative-links__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
}

.page-resources-w88-latest-alternative-links__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
}

.page-resources-w88-latest-alternative-links__hero-title {
    font-size: 3.5em;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-w88-latest-alternative-links__hero-description {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.page-resources-w88-latest-alternative-links__hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-resources-w88-latest-alternative-links__btn-primary,
.page-resources-w88-latest-alternative-links__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
}

.page-resources-w88-latest-alternative-links__btn-primary {
    background-color: #26A9E0;
    color: #FFFFFF;
    border: 2px solid #26A9E0;
}

.page-resources-w88-latest-alternative-links__btn-primary:hover {
    background-color: #1a8cc7;
    border-color: #1a8cc7;
}

.page-resources-w88-latest-alternative-links__btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-resources-w88-latest-alternative-links__btn-secondary:hover {
    background-color: #FFFFFF;
    color: #26A9E0;
}

.page-resources-w88-latest-alternative-links__section {
    padding: 60px 0;
    background-color: #0a0a0a; /* Ensure sections have background for contrast */
}

.page-resources-w88-latest-alternative-links__section:nth-of-type(even) {
    background-color: #1a1a1a; /* Alternate background for readability */
}

.page-resources-w88-latest-alternative-links__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-resources-w88-latest-alternative-links__section-title {
    font-size: 2.5em;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-resources-w88-latest-alternative-links__content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.page-resources-w88-latest-alternative-links__text-block {
    font-size: 1.1em;
    color: #f0f0f0;
    text-align: justify;
    max-width: 900px;
}

.page-resources-w88-latest-alternative-links__image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin: 20px 0;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-resources-w88-latest-alternative-links__image--right {
    float: right;
    margin-left: 30px;
    margin-bottom: 15px;
    max-width: 50%; /* Adjust for text wrapping */
}

.page-resources-w88-latest-alternative-links__list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 900px;
    width: 100%;
}

.page-resources-w88-latest-alternative-links__list-item {
    background-color: rgba(255, 255, 255, 0.08); /* Light transparent background for list items */
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #26A9E0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-w88-latest-alternative-links__list-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-resources-w88-latest-alternative-links__list-item p {
    color: #e0e0e0;
    font-size: 1em;
}

.page-resources-w88-latest-alternative-links__subsection-title {
    font-size: 1.8em;
    color: #FFFFFF;
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: center;
    max-width: 900px;
}

.page-resources-w88-latest-alternative-links__cta-section {
    text-align: center;
    margin-top: 40px;
}

.page-resources-w88-latest-alternative-links__benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1000px;
    width: 100%;
}

.page-resources-w88-latest-alternative-links__benefits-item {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-top: 5px solid #26A9E0;
    text-align: center;
}

.page-resources-w88-latest-alternative-links__benefits-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-resources-w88-latest-alternative-links__benefits-item p {
    color: #e0e0e0;
    font-size: 0.95em;
}

.page-resources-w88-latest-alternative-links__product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-w88-latest-alternative-links__product-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-resources-w88-latest-alternative-links__product-card a {
    text-decoration: none;
    color: inherit;
}

.page-resources-w88-latest-alternative-links__product-card a:hover .page-resources-w88-latest-alternative-links__product-title {
    color: #26A9E0;
}

.page-resources-w88-latest-alternative-links__product-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    min-height: 200px; /* Enforce minimum size */
}

.page-resources-w88-latest-alternative-links__product-title {
    font-size: 1.3em;
    color: #FFFFFF;
    margin: 15px 10px 10px;
    padding: 0 10px;
}

.page-resources-w88-latest-alternative-links__product-description {
    font-size: 0.9em;
    color: #e0e0e0;
    padding: 0 15px;
    margin-bottom: 15px;
    flex-grow: 1;
}

.page-resources-w88-latest-alternative-links__btn-small {
    display: inline-block;
    padding: 10px 20px;
    background-color: #26A9E0;
    color: #FFFFFF;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9em;
    margin: 0 15px 15px;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.page-resources-w88-latest-alternative-links__btn-small:hover {
    background-color: #1a8cc7;
}

.page-resources-w88-latest-alternative-links__faq {
    background-color: #0a0a0a;
}

.page-resources-w88-latest-alternative-links__faq-list {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.page-resources-w88-latest-alternative-links__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-w88-latest-alternative-links__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.15);
    transition: background-color 0.3s ease;
}

.page-resources-w88-latest-alternative-links__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.page-resources-w88-latest-alternative-links__faq-title {
    font-size: 1.2em;
    color: #FFFFFF;
    margin: 0;
    flex-grow: 1;
    text-align: left;
}

.page-resources-w88-latest-alternative-links__faq-toggle {
    font-size: 1.5em;
    color: #26A9E0;
    font-weight: bold;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-resources-w88-latest-alternative-links__faq-item.active .page-resources-w88-latest-alternative-links__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-w88-latest-alternative-links__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-resources-w88-latest-alternative-links__faq-item.active .page-resources-w88-latest-alternative-links__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 25px 25px;
}

.page-resources-w88-latest-alternative-links__faq-answer p {
    color: #e0e0e0;
    font-size: 1em;
    margin: 0;
    text-align: justify;
}

.page-resources-w88-latest-alternative-links__conclusion .page-resources-w88-latest-alternative-links__text-block {
    max-width: 900px;
    margin: 0 auto 20px auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-w88-latest-alternative-links__hero-title {
        font-size: 3em;
    }
    .page-resources-w88-latest-alternative-links__section-title {
        font-size: 2em;
    }
    .page-resources-w88-latest-alternative-links__image--right {
        float: none;
        margin: 20px auto;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-resources-w88-latest-alternative-links__hero-section {
        height: 500px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    }
    .page-resources-w88-latest-alternative-links__hero-title {
        font-size: 2.2em;
    }
    .page-resources-w88-latest-alternative-links__hero-description {
        font-size: 1em;
    }
    .page-resources-w88-latest-alternative-links__hero-cta {
        flex-direction: column;
        gap: 15px;
    }
}