/* style/resources-8xbet-reputation-deep-dive.css */
:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --accent-color-login: #EA7C07;
    --text-color-dark: #333333;
    --text-color-light: #FFFFFF;
    --border-color: #e0e0e0;
    --background-light: #f9f9f9;
}

.page-resources-8xbet-reputation-deep-dive {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background: var(--secondary-color);
}

/* Hero Section */
.page-resources-8xbet-reputation-deep-dive__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    background: linear-gradient(135deg, var(--primary-color), #40c0f0); /* Slightly varied gradient for visual interest */
    color: var(--text-color-light);
}

.page-resources-8xbet-reputation-deep-dive__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-resources-8xbet-reputation-deep-dive__hero-image {
    width: 100%;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.page-resources-8xbet-reputation-deep-dive__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-resources-8xbet-reputation-deep-dive__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-resources-8xbet-reputation-deep-dive__main-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--text-color-light);
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-resources-8xbet-reputation-deep-dive__intro-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color-light);
}

.page-resources-8xbet-reputation-deep-dive__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-color-login);
    color: var(--text-color-light);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-8xbet-reputation-deep-dive__cta-button:hover {
    background: #FF8C00;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-resources-8xbet-reputation-deep-dive__section {
    padding: 80px 20px;
    text-align: center;
}

.page-resources-8xbet-reputation-deep-dive__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-resources-8xbet-reputation-deep-dive__section-title {
    font-size: 2.2em;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: bold;
}

.page-resources-8xbet-reputation-deep-dive__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color-dark);
}