/* style/resources-online-betting-guide-for-beginners.css */
:root {
    --primary-color: #003366;
    --secondary-color: #FFD700;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f8f8f8;
    --bg-medium: #e9e9e9;
    --border-color: #e0e0e0;
}

.page-resources-online-betting-guide-for-beginners {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.page-resources-online-betting-guide-for-beginners__hero {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    overflow: hidden;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-resources-online-betting-guide-for-beginners__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-resources-online-betting-guide-for-beginners__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.page-resources-online-betting-guide-for-beginners__hero-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.page-resources-online-betting-guide-for-beginners__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-online-betting-guide-for-beginners__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: var(--text-light);
}

.page-resources-online-betting-guide-for-beginners__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-online-betting-guide-for-beginners__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-online-betting-guide-for-beginners__cta-button--small {
    padding: 10px 25px;
    font-size: 1em;
}

.page-resources-online-betting-guide-for-beginners__section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.page-resources-online-betting-guide-for-beginners__section:nth-of-type(even) {
    background-color: var(--bg-medium);
}

.page-resources-online-betting-guide-for-beginners__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-online-betting-guide-for-beginners__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-online-betting-guide-for-beginners__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-resources-online-betting-guide-for-beginners__subsection-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid var(--secondary-color);
    padding-left: 15px;
}

.page-resources-online-betting-guide-for-beginners__list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-resources-online-betting-guide-for-beginners__list li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.page-resources-online-betting-guide-for-beginners__inline-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-online-betting-guide-for-beginners__inline-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-resources-online-betting-guide-for-beginners__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-online-betting-guide-for-beginners__image-content {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* FAQ Styles */
.page-resources-online-betting-guide-for-beginners__faq-list {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: var(--text-light);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-medium);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--primary-color);
}

.faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: var(--bg-light);
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 20px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-online-betting-guide-for-beginners__hero-title {
        font-size: 2.8em;
    }

    .page-resources-online-betting-guide-for-beginners__hero-subtitle {
        font-size: 1.2em;
    }

    .page-resources-online-betting-guide-for-beginners__section-title {
        font-size: 2em;
    }

    .page-resources-online-betting-guide-for-beginners__subsection-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-resources-online-betting-guide-for-beginners__hero {
        padding: 60px 15px;
        min-height: 350px;
    }

    .page-resources-online-betting-guide-for-beginners__hero-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }

    .page-resources-online-betting-guide-for-beginners__hero-subtitle {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-resources-online-betting-guide-for-beginners__cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }

    .page-resources-online-betting-guide-for-beginners__section {
        padding: 40px 0;
    }

    .page-resources-online-betting-guide-for-beginners__container {
        padding: 0 15px;
    }

    .page-resources-online-betting-guide-for-beginners__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-resources-online-betting-guide-for-beginners__subsection-title {
        font-size: 1.4em;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .faq-question {
        padding: 12px 15px;
    }

    .faq-question h3 {
        font-size: 1em;
    }

    .faq-toggle {
        font-size: 1.2em;
    }

    .faq-answer {
        padding: 0 15px;
    }

    .faq-item.active .faq-answer {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-resources-online-betting-guide-for-beginners__hero {
        min-height: 300px;
        padding: 40px 10px;
    }

    .page-resources-online-betting-guide-for-beginners__hero-title {
        font-size: 1.8em;
    }

    .page-resources-online-betting-guide-for-beginners__hero-subtitle {
        font-size: 0.9em;
    }

    .page-resources-online-betting-guide-for-beginners__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-resources-online-betting-guide-for-beginners__section-title {
        font-size: 1.5em;
    }

    .page-resources-online-betting-guide-for-beginners__subsection-title {
        font-size: 1.2em;
    }

    .page-resources-online-betting-guide-for-beginners__list {
        padding-left: 20px;
    }
}