/* style/gambling-news-responsible-gambling-updates.css */
:root {
    --primary-color: #004AAD;
    --secondary-color: #FFD700;
    --text-color-dark: #333333;
    --text-color-light: #FFFFFF;
    --background-light: #F8F8F8;
    --background-dark: #003380; /* A slightly darker variant of primary for contrast */
    --accent-color: #ffb552; /* Complementary to primary */
}

.page-gambling-news-responsible-gambling-updates {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--background-light);
}

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

.page-gambling-news-responsible-gambling-updates__hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0028ff 100%); /* Adjusted gradient for better visual appeal, using primary and its complementary */
    color: var(--text-color-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-gambling-news-responsible-gambling-updates__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-gambling-news-responsible-gambling-updates__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: 1;
}

.page-gambling-news-responsible-gambling-updates__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-gambling-news-responsible-gambling-updates__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--secondary-color); /* Gold for emphasis */
}

.page-gambling-news-responsible-gambling-updates__subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
}

.page-gambling-news-responsible-gambling-updates__cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gambling-news-responsible-gambling-updates__cta-button:hover {
    background-color: #E6C200; /* Slightly darker gold */
    transform: translateY(-2px);
}

.page-gambling-news-responsible-gambling-updates__cta-button--secondary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-gambling-news-responsible-gambling-updates__cta-button--secondary:hover {
    background-color: var(--background-dark);
    color: var(--secondary-color);
    border-color: var(--accent-color);
}

.page-gambling-news-responsible-gambling-updates__section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.page-gambling-news-responsible-gambling-updates__section:nth-of-type(even) {
    background-color: #F0F4F8; /* Light gray for alternating sections */
}

.page-gambling-news-responsible-gambling-updates__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-gambling-news-responsible-gambling-updates__section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.page-gambling-news-responsible-gambling-updates__sub-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-gambling-news-responsible-gambling-updates__list,
.page-gambling-news-responsible-gambling-updates__ordered-list {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-gambling-news-responsible-gambling-updates__ordered-list {
    list-style-type: decimal;
}

.page-gambling-news-responsible-gambling-updates__list li,
.page-gambling-news-responsible-gambling-updates__ordered-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: var(--text-color-dark);
}

.page-gambling-news-responsible-gambling-updates__text-center {
    text-align: center;
    margin-top: 40px;
}

.page-gambling-news-responsible-gambling-updates__image-text-layout {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
}

.page-gambling-news-responsible-gambling-updates__image-text-layout--reversed {
    flex-direction: row-reverse;
}

.page-gambling-news-responsible-gambling-updates__image-text-layout img {
    max-width: 45%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-gambling-news-responsible-gambling-updates__image-text-layout p {
    flex: 1;
    font-size: 1.1em;
}

.page-gambling-news-responsible-gambling-updates__tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-gambling-news-responsible-gambling-updates__tool-item {
    background-color: var(--text-color-light);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gambling-news-responsible-gambling-updates__tool-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-gambling-news-responsible-gambling-updates__tool-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-gambling-news-responsible-gambling-updates__tool-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-gambling-news-responsible-gambling-updates__app-cta {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    padding: 80px 0;
}

.page-gambling-news-responsible-gambling-updates__app-cta-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-gambling-news-responsible-gambling-updates__app-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-gambling-news-responsible-gambling-updates__app-text .page-gambling-news-responsible-gambling-updates__section-title {
    color: var(--secondary-color);
    text-align: left;
}

.page-gambling-news-responsible-gambling-updates__app-text .page-gambling-news-responsible-gambling-updates__section-title::after {
    left: 0;
    transform: translateX(0);
}

.page-gambling-news-responsible-gambling-updates__app-text p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-gambling-news-responsible-gambling-updates__app-image {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.page-gambling-news-responsible-gambling-updates__app-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gambling-news-responsible-gambling-updates__title {
        font-size: 2.5em;
    }

    .page-gambling-news-responsible-gambling-updates__subtitle {
        font-size: 1.2em;
    }

    .page-gambling-news-responsible-gambling-updates__section-title {
        font-size: 2em;
    }

    .page-gambling-news-responsible-gambling-updates__sub-title {
        font-size: 1.6em;
    }

    .page-gambling-news-responsible-gambling-updates__image-text-layout,
    .page-gambling-news-responsible-gambling-updates__image-text-layout--reversed {
        flex-direction: column;
    }

    .page-gambling-news-responsible-gambling-updates__image-text-layout img {
        max-width: 80%;
    }

    .page-gambling-news-responsible-gambling-updates__app-cta-content {
        flex-direction: column;
    }

    .page-gambling-news-responsible-gambling-updates__app-text,
    .page-gambling-news-responsible-gambling-updates__app-image {
        text-align: center;
    }

    .page-gambling-news-responsible-gambling-updates__app-text .page-gambling-news-responsible-gambling-updates__section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .page-gambling-news-responsible-gambling-updates__hero {
        padding: 60px 0;
    }

    .page-gambling-news-responsible-gambling-updates__title {
        font-size: 2em;
    }

    .page-gambling-news-responsible-gambling-updates__subtitle {
        font-size: 1em;
    }

    .page-gambling-news-responsible-gambling-updates__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-gambling-news-responsible-gambling-updates__section {
        padding: 40px 0;
    }

    .page-gambling-news-responsible-gambling-updates__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-gambling-news-responsible-gambling-updates__sub-title {
        font-size: 1.4em;
    }

    .page-gambling-news-responsible-gambling-updates__list,
    .page-gambling-news-responsible-gambling-updates__ordered-list {
        padding-left: 20px;
    }

    .page-gambling-news-responsible-gambling-updates__tool-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-gambling-news-responsible-gambling-updates__title {
        font-size: 1.8em;
    }

    .page-gambling-news-responsible-gambling-updates__subtitle {
        font-size: 0.9em;
    }

    .page-gambling-news-responsible-gambling-updates__section-title {
        font-size: 1.5em;
    }

    .page-gambling-news-responsible-gambling-updates__app-text .page-gambling-news-responsible-gambling-updates__section-title {
        font-size: 1.8em;
    }

    .page-gambling-news-responsible-gambling-updates__app-text p {
        font-size: 1em;
    }
}