:root {
    --primary-color: #017439; /* Main brand green */
    --secondary-color: #FFFFFF; /* White */
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --background-light: #f9f9f9;
    --border-color: #e0e0e0;

    /* Custom colors from requirements */
    --register-login-btn-bg: #C30808; /* Red */
    --register-login-btn-text: #FFFFFF; /* Adjusted to white for contrast */
}

/* Base styles for the page content */
.page-responsible-gambling-tools-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background: var(--secondary-color); /* Body background is white */
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-responsible-gambling-tools-support__section {
    padding: 60px 0;
    text-align: center;
}

.page-responsible-gambling-tools-support__section--importance {
    background-color: var(--background-light);
}

.page-responsible-gambling-tools-support__section--tools {
    background-color: var(--secondary-color);
}

.page-responsible-gambling-tools-support__section--support {
    background-color: var(--background-light);
}

.page-responsible-gambling-tools-support__section--security {
    background-color: var(--secondary-color);
}

.page-responsible-gambling-tools-support__section--faq {
    background-color: var(--background-light);
}

.page-responsible-gambling-tools-support__section--conclusion {
    background-color: var(--primary-color); /* Dark background for conclusion */
    color: var(--text-color-light); /* White text for conclusion */
}

.page-responsible-gambling-tools-support__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-responsible-gambling-tools-support__heading {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: bold;
}

.page-responsible-gambling-tools-support__heading--white {
    color: var(--text-color-light);
}

.page-responsible-gambling-tools-support__text-block {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: left;
}

.page-responsible-gambling-tools-support__text-block--white {
    color: var(--text-color-light);
}

.page-responsible-gambling-tools-support__text-block a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-responsible-gambling-tools-support__text-block--white a {
    color: #FFFF00; /* Yellow for links on dark background */
}

/* Hero Section */
.page-responsible-gambling-tools-support__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), var(--secondary-color)); /* Gradient background */
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-responsible-gambling-tools-support__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-responsible-gambling-tools-support__hero-title {
    font-size: 48px;
    color: var(--text-color-light); /* White text on dark green gradient */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-responsible-gambling-tools-support__hero-description {
    font-size: 22px;
    color: var(--text-color-light); /* White text */
    margin-bottom: 30px;
    max-width: 800px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.page-responsible-gambling-tools-support__hero-image {
    width: 100%;
    margin-bottom: 30px;
    max-width: 900px; /* Constrain image width for better presentation */
}

.page-responsible-gambling-tools-support__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}