:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --border-color: #e0e0e0;
    --background-alt: #f8f8f8;
}

.page-resources-safe-online-betting {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--secondary-color);
    overflow-x: hidden;
}

.page-resources-safe-online-betting__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-resources-safe-online-betting__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #aed6f1 100%);
    color: var(--text-light);
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-resources-safe-online-betting__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-resources-safe-online-betting__hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.page-resources-safe-online-betting__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-resources-safe-online-betting__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    color: var(--text-light);
}

.page-resources-safe-online-betting__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.page-resources-safe-online-betting__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--text-light);
}

.page-resources-safe-online-betting__section {
    padding: 60px 0;
}

.page-resources-safe-online-betting__section--alt-bg {
    background-color: var(--background-alt);
}

.page-resources-safe-online-betting__section-title {
    font-size: 2.2em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-resources-safe-online-betting__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-resources-safe-online-betting__sub-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-safe-online-betting__paragraph {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: var(--text-dark);
}

.page-resources-safe-online-betting__highlight {
    font-weight: bold;
    color: var(--primary-color);
}

.page-resources-safe-online-betting__cta-button,
.page-resources-safe-online-betting__btn-primary,
.page-resources-safe-online-betting__btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    text-align: center;
}

.page-resources-safe-online-betting__cta-button,
.page-resources-safe-online-betting__btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
    border: 2px solid transparent;
}

.page-resources-safe-online-betting__cta-button:hover,
.page-resources-safe-online-betting__btn-primary:hover {
    background: #1f8ec4; /* Darken primary color */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-safe-online-betting__btn-secondary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-left: 20px;
}

.page-resources-safe-online-betting__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-safe-online-betting__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-resources-safe-online-betting__content-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.page-resources-safe-online-betting__content-grid--reversed {
    flex-direction: row-reverse;
}

.page-resources-safe-online-betting__text-block {
    flex: 1;
}

.page-resources-safe-online-betting__image-wrapper {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-resources-safe-online-betting__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-resources-safe-online-betting__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-resources-safe-online-betting__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-resources-safe-online-betting__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-resources-safe-online-betting__faq-question:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.page-resources-safe-online-betting__faq-question:active {
    background: #eeeeee;
}

.page-resources-safe-online-betting__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-dark);
    pointer-events: none;
}

.page-resources-safe-online-betting__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #666;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.page-resources-safe-online-betting__faq-item.active .page-resources-safe-online-betting__faq-toggle {
    color: var(--primary-color);
    transform: rotate(45deg);
}

.page-resources-safe-online-betting__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
    padding: 0 15px;
    opacity: 0;
    background: var(--background-alt);
    border-radius: 0 0 5px 5px;
}

.page-resources-safe-online-betting__faq-item.active .page-resources-safe-online-betting__faq-answer {
    max-height: 2000px !important;
    padding: 20px 15px !important;
    opacity: 1;
}

.page-resources-safe-online-betting__faq-answer p {
    margin: 0;
    color: var(--text-dark);
}

.page-resources-safe-online-betting__conclusion-section {
    text-align: center;
    padding-bottom: 80px;
}

@media (max-width: 992px) {
    .page-resources-safe-online-betting__hero-title {
        font-size: 2.5em;
    }

    .page-resources-safe-online-betting__hero-description {
        font-size: 1.1em;
    }

    .page-resources-safe-online-betting__section-title {
        font-size: 1.8em;
    }

    .page-resources-safe-online-betting__sub-title {
        font-size: 1.4em;
    }

    .page-resources-safe-online-betting__content-grid {
        flex-direction: column;
        gap: 30px;
    }

    .page-resources-safe-online-betting__content-grid--reversed {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-resources-safe-online-betting {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-resources-safe-online-betting__hero-section {
        padding-top: var(--header-offset, 120px) !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-resources-safe-online-betting__hero-title {
        font-size: 2em;
    }

    .page-resources-safe-online-betting__hero-description {
        font-size: 1em;
    }

    .page-resources-safe-online-betting__section {
        padding: 40px 0;
    }

    .page-resources-safe-online-betting__section-title {
        font-size: 1.6em;
        margin-bottom: 30px;
    }

    .page-resources-safe-online-betting__sub-title {
        font-size: 1.2em;
    }

    .page-resources-safe-online-betting__container {
        padding: 0 15px;
    }

    .page-resources-safe-online-betting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-resources-safe-online-betting__section,
    .page-resources-safe-online-betting__card,
    .page-resources-safe-online-betting__container,
    .page-resources-safe-online-betting__image-wrapper,
    .page-resources-safe-online-betting__text-block {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
    }

    .page-resources-safe-online-betting__section:not(.page-resources-safe-online-betting__hero-section) .page-resources-safe-online-betting__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .page-resources-safe-online-betting__cta-button,
    .page-resources-safe-online-betting__btn-primary,
    .page-resources-safe-online-betting__btn-secondary,
    .page-resources-safe-online-betting a[class*="button"],
    .page-resources-safe-online-betting a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 15px;
    }

    .page-resources-safe-online-betting__cta-group {
        flex-direction: column !important;
        gap: 0 !important;
    }
    .page-resources-safe-online-betting__cta-group .page-resources-safe-online-betting__cta-button:last-child {
        margin-bottom: 0;
    }

    .page-resources-safe-online-betting__faq-question {
        padding: 15px;
    }
    
    .page-resources-safe-online-betting__faq-question h3 {
        font-size: 15px;
        width: calc(100% - 40px);
    }
    
    .page-resources-safe-online-betting__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    
    .page-resources-safe-online-betting__faq-answer {
        padding: 0 15px;
    }
    
    .page-resources-safe-online-betting__faq-item.active .page-resources-safe-online-betting__faq-answer {
        padding: 15px !important;
    }
}