:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #ffffff;
    --background-dark: #26A9E0; /* Using primary color as dark background for contrast */
    --button-login: #EA7C07;
    --border-light: #e0e0e0;
}

.page-resources-how-to-understand-88-odds {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default text color for light background */
    background-color: var(--background-light); /* Body background is light */
}

/* Hero Section */
.page-resources-how-to-understand-88-odds__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
    text-align: center;
    overflow: hidden; /* Prevent image overflow */
    background: var(--background-dark);
    color: var(--text-light);
}

.page-resources-how-to-understand-88-odds__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-bottom: 30px;
}

.page-resources-how-to-understand-88-odds__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: bold;
}

.page-resources-how-to-understand-88-odds__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-light);
}

.page-resources-how-to-understand-88-odds__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-resources-how-to-understand-88-odds__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15; /* Subtle overlay */
    filter: none; /* Ensure no color filter */
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
}

/* General Section Styling */
.page-resources-how-to-understand-88-odds__section {
    padding: 60px 20px;
    background-color: var(--background-light);
    color: var(--text-dark);
}

.page-resources-how-to-understand-88-odds__dark-bg {
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-resources-how-to-understand-88-odds__light-bg {
    background-color: var(--background-light);
    color: var(--text-dark);
}

.page-resources-how-to-understand-88-odds__container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-resources-how-to-understand-88-odds__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

.page-resources-how-to-understand-88-odds__section-title--white {
    color: var(--text-light);
}

.page-resources-how-to-understand-88-odds__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-resources-how-to-understand-88-odds__paragraph--white {
    color: var(--text-light);
}

/* Card Grid Layout */
.page-resources-how-to-understand-88-odds__card-grid,
.page-resources-how-to-understand-88-odds__feature-grid,
.page-resources-how-to-understand-88-odds__strategy-grid,
.page-resources-how-to-understand-88-odds__trust-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-how-to-understand-88-odds__card,
.page-resources-how-to-understand-88-odds__feature-card,
.page-resources-how-to-understand-88-odds__strategy-card,
.page-resources-how-to-understand-88-odds__trust-card {
    background: var(--background-light);
    color: var(--text-dark);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border-light); /* Added for contrast */
}

.page-resources-how-to-understand-88-odds__card-title,
.page-resources-how-to-understand-88-odds__feature-title,
.page-resources-how-to-understand-88-odds__strategy-title,
.page-resources-how-to-understand-88-odds__trust-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: bold;
}

.page-resources-how-to-understand-88-odds__card-text,
.page-resources-how-to-understand-88-odds__feature-text,
.page-resources-how-to-understand-88-odds__strategy-text,
.page-resources-how-to-understand-88-odds__trust-text {
    font-size: 1em;
    margin-bottom: 15px;
}

.page-resources-how-to-understand-88-odds__card-image,
.page-resources-how-to-understand-88-odds__feature-image,
.page-resources-how-to-understand-88-odds__strategy-image,
.page-resources-how-to-understand-88-odds__trust-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
    filter: none; /* Ensure no color filter */
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
    object-fit: cover;
}

/* Buttons */
.page-resources-how-to-understand-88-odds__btn-primary,
.page-resources-how-to-understand-88-odds__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box; /* Ensure padding is included in width */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    max-width: 100%; /* Ensure button doesn't overflow */
}

.page-resources-how-to-understand-88-odds__btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-resources-how-to-understand-88-odds__btn-primary:hover {
    background-color: #208cb5; /* Darken primary color */
    border-color: #208cb5;
}

.page-resources-how-to-understand-88-odds__btn-primary--large {
    font-size: 1.3em;
    padding: 18px 35px;
}

.page-resources-how-to-understand-88-odds__btn-secondary {
    background-color: var(--background-light);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-resources-how-to-understand-88-odds__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-resources-how-to-understand-88-odds__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* CTA Section */
.page-resources-how-to-understand-88-odds__cta-section {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-resources-how-to-understand-88-odds__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: bold;
}

.page-resources-how-to-understand-88-odds__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: var(--text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.page-resources-how-to-understand-88-odds__faq-list {
    margin-top: 40px;
}

.page-resources-how-to-understand-88-odds__faq-item {
    background-color: var(--background-light);
    color: var(--text-dark);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-resources-how-to-understand-88-odds__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: var(--background-light);
    color: var(--primary-color);
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-resources-how-to-understand-88-odds__faq-question::-webkit-details-marker {
    display: none;
}

.page-resources-how-to-understand-88-odds__faq-question:hover {
    background-color: #f0f0f0;
}

.page-resources-how-to-understand-88-odds__faq-answer {
    padding: 0 25px 20px;
    font-size: 1.05em;
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-how-to-understand-88-odds__hero-title {
        font-size: 2.8em;
    }
    .page-resources-how-to-understand-88-odds__section-title {
        font-size: 2em;
    }
    .page-resources-how-to-understand-88-odds__cta-title {
        font-size: 2.4em;
    }
}

@media (max-width: 768px) {
    /* General mobile adjustments */
    .page-resources-how-to-understand-88-odds {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-resources-how-to-understand-88-odds__hero-section {
        padding: 40px 15px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure header offset on mobile */
    }

    .page-resources-how-to-understand-88-odds__hero-title {
        font-size: 2.2em;
    }

    .page-resources-how-to-understand-88-odds__hero-description {
        font-size: 1em;
    }

    .page-resources-how-to-understand-88-odds__section {
        padding: 40px 15px;
    }

    .page-resources-how-to-understand-88-odds__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .page-resources-how-to-understand-88-odds__paragraph {
        font-size: 1em;
    }
}