/* style/resources-how-to-contact-shbet-support.css */

:root {
    --primary-color: #0A2E36;
    --secondary-color: #FFD700;
    --text-light: #ffffff;
    --text-dark: #333333;
    --background-dark: #000;
    --background-light: #f8f8f8;
    --card-background-dark: rgba(255, 255, 255, 0.08);
    --card-background-light: #ffffff;
    --border-color: #2a5b67;
}

.page-resources-how-to-contact-shbet-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Default for dark body background */
    background-color: var(--background-dark); /* Inherits from body */
}

.page-resources-how-to-contact-shbet-support__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    background: var(--primary-color);
    color: var(--text-light);
    overflow: hidden;
}

.page-resources-how-to-contact-shbet-support__hero-content {
    max-width: 900px;
    z-index: 1;
    position: relative;
    margin-bottom: 30px;
}

.page-resources-how-to-contact-shbet-support__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-resources-how-to-contact-shbet-support__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-how-to-contact-shbet-support__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.page-resources-how-to-contact-shbet-support__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.page-resources-how-to-contact-shbet-support__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-resources-how-to-contact-shbet-support__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
}

.page-resources-how-to-contact-shbet-support__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-how-to-contact-shbet-support__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-resources-how-to-contact-shbet-support__dark-bg {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0;
}

.page-resources-how-to-contact-shbet-support__light-bg {
    background-color: var(--background-light);
    color: var(--text-dark);
    padding: 60px 0;
}

.page-resources-how-to-contact-shbet-support__introduction .page-resources-how-to-contact-shbet-support__paragraph,
.page-resources-how-to-contact-shbet-support__commitment .page-resources-how-to-contact-shbet-support__paragraph,
.page-resources-how-to-contact-shbet-support__cta-section .page-resources-how-to-contact-shbet-support__paragraph {
    color: var(--text-dark);
}

.page-resources-how-to-contact-shbet-support__btn-primary,
.page-resources-how-to-contact-shbet-support__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
}

.page-resources-how-to-contact-shbet-support__btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
    margin: 10px;
}

.page-resources-how-to-contact-shbet-support__btn-primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.page-resources-how-to-contact-shbet-support__btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    margin: 10px;
}

.page-resources-how-to-contact-shbet-support__btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.page-resources-how-to-contact-shbet-support__channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-how-to-contact-shbet-support__card {
    background-color: var(--card-background-dark);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
}

.page-resources-how-to-contact-shbet-support__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-contact-shbet-support__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-resources-how-to-contact-shbet-support__card-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.page-resources-how-to-contact-shbet-support__card-text {
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: justify;
}

.page-resources-how-to-contact-shbet-support__info-card {
    background-color: var(--card-background-light);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    color: var(--text-dark);
}

.page-resources-how-to-contact-shbet-support__info-card-title {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-how-to-contact-shbet-support__info-card-text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: var(--text-dark);
}

.page-resources-how-to-contact-shbet-support__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-resources-how-to-contact-shbet-support__list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: var(--text-light);
}

.page-resources-how-to-contact-shbet-support__list-icon {
    color: var(--secondary-color);
    font-size: 1.5em;
    margin-right: 15px;
    flex-shrink: 0;
}

.page-resources-how-to-contact-shbet-support__commitment-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-resources-how-to-contact-shbet-support__commitment-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: var(--text-dark);
}

.page-resources-how-to-contact-shbet-support__faq-section {
    padding: 60px 0;
}

.page-resources-how-to-contact-shbet-support__faq-list {
    margin-top: 40px;
}

.page-resources-how-to-contact-shbet-support__faq-item {
    background-color: var(--card-background-dark);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-how-to-contact-shbet-support__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.page-resources-how-to-contact-shbet-support__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-resources-how-to-contact-shbet-support__faq-title {
    margin: 0;
    color: var(--secondary-color);
}

.page-resources-how-to-contact-shbet-support__faq-toggle {
    font-size: 1.8em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--secondary-color);
}

.page-resources-how-to-contact-shbet-support__faq-item.active .page-resources-how-to-contact-shbet-support__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-how-to-contact-shbet-support__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-light);
    text-align: justify;
}

.page-resources-how-to-contact-shbet-support__faq-item.active .page-resources-how-to-contact-shbet-support__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 20px 25px;
}

.page-resources-how-to-contact-shbet-support__faq-answer p {
    margin: 0;
}

.page-resources-how-to-contact-shbet-support__faq-cta {
    margin-top: 40px;
    display: block;
    text-align: center;
}

.page-resources-how-to-contact-shbet-support__cta-section {
    padding: 80px 0;
    text-align: center;
}

.page-resources-how-to-contact-shbet-support__cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-resources-how-to-contact-shbet-support__cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Image and general content responsiveness */
.page-resources-how-to-contact-shbet-support img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
    .page-resources-how-to-contact-shbet-support__hero-title {
        font-size: 2.8em;
    }
    .page-resources-how-to-contact-shbet-support__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-resources-how-to-contact-shbet-support__hero-section {
        padding: 60px 15px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile offset */
    }
    .page-resources-how-to-contact-shbet-support__hero-title {
        font-size: 2.2em;
    }
    .page-resources-how-to-contact-shbet-support__hero-description {
        font-size: 1em;
    }
    .page-resources-how-to-contact-shbet-support__section-title {
        font-size: 1.8em;
    }
    .page-resources-how-to-contact-shbet-support__paragraph {
        font-size: 1em;
    }
    .page-resources-how-to-contact-shbet-support__card {
        padding: 20px;
    }
    .page-resources-how-to-contact-shbet-support__card-title {
        font-size: 1.5em;
    }
    .page-resources-how-to-contact-shbet-support__info-card-title {
        font-size: 1.6em;
    }
    .page-resources-how-to-contact-shbet-support__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-resources-how-to-contact-shbet-support__faq-answer {
        padding: 15px 20px;
    }
    .page-resources-how-to-contact-shbet-support__faq-item.active .page-resources-how-to-contact-shbet-support__faq-answer {
        padding: 15px 20px;
    }
    .page-resources-how-to-contact-shbet-support__list-item,
    .page-resources-how-to-contact-shbet-support__commitment-item {
        font-size: 1em;
    }

    /* Forced image responsiveness */
    .page-resources-how-to-contact-shbet-support img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-resources-how-to-contact-shbet-support__section,
    .page-resources-how-to-contact-shbet-support__card,
    .page-resources-how-to-contact-shbet-support__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
    .page-resources-how-to-contact-shbet-support__cta-button,
    .page-resources-how-to-contact-shbet-support__btn-primary,
    .page-resources-how-to-contact-shbet-support__btn-secondary,
    .page-resources-how-to-contact-shbet-support a[class*="button"],
    .page-resources-how-to-contact-shbet-support 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: 10px 0 !important;
    }
    .page-resources-how-to-contact-shbet-support__cta-buttons,
    .page-resources-how-to-contact-shbet-support__button-group,
    .page-resources-how-to-contact-shbet-support__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
        flex-direction: column;
        gap: 10px;
    }
}