:root {
    --h3bet-primary: #11A84E;
    --h3bet-secondary: #22C768;
    --h3bet-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --h3bet-card-bg: #11271B;
    --h3bet-bg: #08160F;
    --h3bet-text-main: #F2FFF6;
    --h3bet-text-secondary: #A7D9B8;
    --h3bet-border: #2E7A4E;
    --h3bet-glow: #57E38D;
    --h3bet-gold: #F2C14E;
    --h3bet-divider: #1E3A2A;
    --h3bet-deep-green: #0A4B2C;
}

.page-blog-h3bet-security-features {
    color: var(--h3bet-text-main); /* Default text color for dark body background */
    background-color: var(--h3bet-bg);
}

.page-blog-h3bet-security-features__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
    background-color: var(--h3bet-bg);
    overflow: hidden;
}

.page-blog-h3bet-security-features__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-blog-h3bet-security-features__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-h3bet-security-features__hero-content {
    max-width: 900px;
    margin: 40px auto 0 auto;
    padding: 0 20px;
    text-align: center;
    z-index: 1;
}

.page-blog-h3bet-security-features__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--h3bet-text-main);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.page-blog-h3bet-security-features__hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--h3bet-text-secondary);
    margin-bottom: 40px;
}

.page-blog-h3bet-security-features__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-blog-h3bet-security-features__btn-primary,
.page-blog-h3bet-security-features__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    box-sizing: border-box;
}

.page-blog-h3bet-security-features__btn-primary {
    background: var(--h3bet-button-gradient);
    color: var(--h3bet-text-main);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-h3bet-security-features__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

.page-blog-h3bet-security-features__btn-secondary {
    background: transparent;
    color: var(--h3bet-text-main);
    border: 2px solid var(--h3bet-primary);
}

.page-blog-h3bet-security-features__btn-secondary:hover {
    background: var(--h3bet-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.page-blog-h3bet-security-features__content-area {
    padding: 60px 0;
}

.page-blog-h3bet-security-features__dark-bg {
    background-color: var(--h3bet-bg);
    color: var(--h3bet-text-main);
}

.page-blog-h3bet-security-features__light-bg {
    background-color: var(--h3bet-card-bg);
    color: var(--h3bet-text-main);
}

.page-blog-h3bet-security-features__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-h3bet-security-features__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--h3bet-gold);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.page-blog-h3bet-security-features__text-block {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--h3bet-text-secondary);
}

.page-blog-h3bet-security-features__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
}

.page-blog-h3bet-security-features__faq-section {
    padding: 60px 0;
    background-color: var(--h3bet-bg);
    color: var(--h3bet-text-main);
}

.page-blog-h3bet-security-features__faq-list {
    margin-top: 40px;
}

.page-blog-h3bet-security-features__faq-item {
    background-color: var(--h3bet-card-bg);
    border: 1px solid var(--h3bet-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-h3bet-security-features__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--h3bet-text-main);
    cursor: pointer;
    background-color: var(--h3bet-deep-green);
    transition: background-color 0.3s ease;
    list-style: none;
}

.page-blog-h3bet-security-features__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-h3bet-security-features__faq-question:hover {
    background-color: color-mix(in srgb, var(--h3bet-deep-green), black 10%);
}

.page-blog-h3bet-security-features__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
}

.page-blog-h3bet-security-features__faq-item[open] .page-blog-h3bet-security-features__faq-question {
    background-color: color-mix(in srgb, var(--h3bet-deep-green), black 5%);
}

.page-blog-h3bet-security-features__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--h3bet-text-secondary);
}

.page-blog-h3bet-security-features__cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--h3bet-bg);
}

.page-blog-h3bet-security-features__center-text {
    text-align: center;
}

@media (max-width: 1024px) {
    .page-blog-h3bet-security-features__hero-content {
        max-width: 768px;
    }
    .page-blog-h3bet-security-features__container {
        max-width: 768px;
    }
}

@media (max-width: 768px) {
    .page-blog-h3bet-security-features__hero-section {
        padding: 10px 0 40px 0;
    }
    .page-blog-h3bet-security-features__hero-content {
        margin-top: 20px;
    }
    .page-blog-h3bet-security-features__main-title {
        font-size: 2.2rem;
    }
    .page-blog-h3bet-security-features__hero-description {
        font-size: 1rem;
    }
    .page-blog-h3bet-security-features__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-blog-h3bet-security-features__btn-primary,
    .page-blog-h3bet-security-features__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
    }
    .page-blog-h3bet-security-features__content-area {
        padding: 40px 0;
    }
    .page-blog-h3bet-security-features__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .page-blog-h3bet-security-features__text-block {
        font-size: 0.95rem;
    }
    .page-blog-h3bet-security-features__content-image {
        margin: 30px auto;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-h3bet-security-features__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-blog-h3bet-security-features__faq-section {
        padding: 40px 0;
    }
    .page-blog-h3bet-security-features__faq-question {
        font-size: 1rem;
        padding: 15px;
    }
    .page-blog-h3bet-security-features__faq-answer {
        font-size: 0.9rem;
        padding: 0 15px 15px 15px;
    }
    .page-blog-h3bet-security-features__cta-section {
        padding: 60px 0;
    }
}