/* style/resources-big-data-football-odds-prediction.css */
:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --register-color: #C30808;
    --login-color: #C30808;
    --text-color-light: #FFFF00;
    --text-color-dark: #333333;
    --background-color: #FFFFFF;
    --card-background: #ffffff;
    --border-color: #e0e0e0;
}

.page-resources-big-data-football-odds-prediction {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark); /* Default text color for light backgrounds */
    background-color: var(--background-color); /* Page background */
}

.page-resources-big-data-football-odds-prediction__dark-bg {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.page-resources-big-data-football-odds-prediction__light-bg {
    background-color: var(--background-color);
    color: var(--text-color-dark);
}

.page-resources-big-data-football-odds-prediction__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    overflow: hidden;
}

.page-resources-big-data-football-odds-prediction__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.8;
}

.page-resources-big-data-football-odds-prediction__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
    border-radius: 10px;
}

.page-resources-big-data-football-odds-prediction__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--text-color-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-big-data-football-odds-prediction__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.page-resources-big-data-football-odds-prediction__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-resources-big-data-football-odds-prediction__btn-primary,
.page-resources-big-data-football-odds-prediction__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;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow long words to break */
    box-sizing: border-box;
    max-width: 100%;
}

.page-resources-big-data-football-odds-prediction__btn-primary {
    background-color: var(--register-color); /* Use custom color for register/login */
    color: var(--text-color-light); /* Use custom color for register/login text */
    border: 2px solid var(--register-color);
}

.page-resources-big-data-football-odds-prediction__btn-primary:hover {
    background-color: darken(var(--register-color), 10%);
    color: var(--secondary-color);
}

.page-resources-big-data-football-odds-prediction__btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-resources-big-data-football-odds-prediction__btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.page-resources-big-data-football-odds-prediction__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-resources-big-data-football-odds-prediction__section-title {
    font-size: 2.2em;
    margin-bottom: 30px;
    text-align: center;
    color: inherit; /* Inherit color from section background */
}

.page-resources-big-data-football-odds-prediction__paragraph {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: inherit;
}

.page-resources-big-data-football-odds-prediction__list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.page-resources-big-data-football-odds-prediction__ordered-list {
    list-style: decimal;
    padding-left: 20px;
    margin: 0 0 30px 0;
}

.page-resources-big-data-football-odds-prediction__list-item {
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid var(--register-color); /* Highlight with custom color */
    color: inherit;
}

.page-resources-big-data-football-odds-prediction__list-heading {
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
    color: inherit;
}

.page-resources-big-data-football-odds-prediction__content-image {
    display: block;
    margin: 40px auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-big-data-football-odds-prediction__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-big-data-football-odds-prediction__benefit-card {
    background: var(--card-background);
    color: var(--text-color-dark);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-resources-big-data-football-odds-prediction__benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-big-data-football-odds-prediction__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-resources-big-data-football-odds-prediction__faq-section {
    padding: 60px 0;
}

.page-resources-big-data-football-odds-prediction__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-resources-big-data-football-odds-prediction__faq-item {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-big-data-football-odds-prediction__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
}

.page-resources-big-data-football-odds-prediction__faq-question h3 {
    margin: 0;
    color: inherit;
}

.page-resources-big-data-football-odds-prediction__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.page-resources-big-data-football-odds-prediction__faq-item.active .page-resources-big-data-football-odds-prediction__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-big-data-football-odds-prediction__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-color-dark);
}

.page-resources-big-data-football-odds-prediction__faq-item.active .page-resources-big-data-football-odds-prediction__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 20px;
}

.page-resources-big-data-football-odds-prediction__faq-answer p {
    margin-top: 0;
    margin-bottom: 0;
}

.page-resources-big-data-football-odds-prediction__cta-section {
    padding: 80px 20px;
    text-align: center;
}

.page-resources-big-data-football-odds-prediction__text-center {
    text-align: center;
}

.page-resources-big-data-football-odds-prediction__cta-button {
    margin: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-big-data-football-odds-prediction__hero-title {
        font-size: 2.5em;
    }
    .page-resources-big-data-football-odds-prediction__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-resources-big-data-football-odds-prediction__hero-section {
        min-height: 500px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure content is below fixed header */
    }
    .page-resources-big-data-football-odds-prediction__hero-title {
        font-size: 2em;
    }
    .page-resources-big-data-football-odds-prediction__hero-description {
        font-size: 1em;
    }
    .page-resources-big-data-football-odds-prediction__section-title {
        font-size: 1.8em;
    }
    .page-resources-big-data-football-odds-prediction__paragraph,
    .page-resources-big-data-football-odds-prediction__list-item p {
        font-size: 0.95em;
    }
    .page-resources-big-data-football-odds-prediction__list-heading {
        font-size: 1.2em;
    }
    .page-resources-big-data-football-odds-prediction__btn-primary,
    .page-resources-big-data-football-odds-prediction__btn-secondary {
        padding: 12px 20px;
        font-size: 0.9em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-resources-big-data-football-odds-prediction__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-big-data-football-odds-prediction__benefits-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-big-data-football-odds-prediction img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-resources-big-data-football-odds-prediction__section,
    .page-resources-big-data-football-odds-prediction__card,
    .page-resources-big-data-football-odds-prediction__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-resources-big-data-football-odds-prediction__video-section {
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-resources-big-data-football-odds-prediction__cta-buttons,
    .page-resources-big-data-football-odds-prediction__button-group,
    .page-resources-big-data-football-odds-prediction__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-resources-big-data-football-odds-prediction__cta-buttons {
        display: flex;
        flex-direction: column;
    }
}