/* style/gambling-information-legal-updates.css */
.page-gambling-information-legal-updates {
    font-family: 'Arial', sans-serif;
    color: #1A2E4C; /* Main text color */
    background-color: #F0F4F8; /* Light background for readability */
    line-height: 1.6;
}

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

.page-gambling-information-legal-updates__hero {
    background: linear-gradient(135deg, #1A2E4C 0%, #3a5c8e 100%); /* Dark blue gradient */
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-gambling-information-legal-updates__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 30px;
}

.page-gambling-information-legal-updates__hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #FFD700; /* Gold for main title */
    line-height: 1.2;
}

.page-gambling-information-legal-updates__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

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

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

.page-gambling-information-legal-updates__section {
    padding: 60px 0;
    background-color: #FFFFFF;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-gambling-information-legal-updates__section--intro {
    background-color: #F8F8F8;
}

.page-gambling-information-legal-updates__section-title {
    font-size: 2.5em;
    color: #1A2E4C;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
}

.page-gambling-information-legal-updates__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-gambling-information-legal-updates__sub-title {
    font-size: 1.8em;
    color: #1A2E4C;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-gambling-information-legal-updates__text {
    font-size: 1.1em;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-gambling-information-legal-updates__link-text {
    color: #1A2E4C; /* Dark blue for links */
    text-decoration: underline;
    font-weight: bold;
}

.page-gambling-information-legal-updates__link-text:hover {
    color: #FFD700; /* Gold on hover */
    text-decoration: none;
}

.page-gambling-information-legal-updates__highlight {
    color: #1A2E4C;
    font-weight: bold;
}

.page-gambling-information-legal-updates__btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
    text-align: center;
}

.page-gambling-information-legal-updates__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A2E4C; /* Dark blue text on gold */
    border: 2px solid #FFD700;
}

.page-gambling-information-legal-updates__btn--primary:hover {
    background-color: #e5c000; /* Slightly darker gold */
    color: #1A2E4C;
}

.page-gambling-information-legal-updates__btn--secondary {
    background-color: transparent;
    color: #1A2E4C;
    border: 2px solid #1A2E4C;
}

.page-gambling-information-legal-updates__btn--secondary:hover {
    background-color: #1A2E4C;
    color: #FFFFFF;
}

.page-gambling-information-legal-updates__features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.page-gambling-information-legal-updates__feature-item {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 30px;
    flex: 1 1 calc(33% - 40px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-gambling-information-legal-updates__feature-item:hover {
    transform: translateY(-5px);
}

.page-gambling-information-legal-updates__feature-title {
    font-size: 1.5em;
    color: #1A2E4C;
    margin-bottom: 15px;
}

.page-gambling-information-legal-updates__feature-text {
    color: #555555;
    font-size: 1em;
}

.page-gambling-information-legal-updates__commitment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    justify-content: center;
}

.page-gambling-information-legal-updates__commitment-item {
    flex: 1 1 calc(50% - 40px);
    background-color: #F0F4F8;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-gambling-information-legal-updates__commitment-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-gambling-information-legal-updates__commitment-title {
    font-size: 1.6em;
    color: #1A2E4C;
    margin-bottom: 15px;
}

.page-gambling-information-legal-updates__commitment-text {
    color: #555555;
    font-size: 1.05em;
}

.page-gambling-information-legal-updates__image--full-width {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-gambling-information-legal-updates__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-gambling-information-legal-updates__list-item {
    background-color: #FFFFFF;
    border-left: 5px solid #FFD700;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-gambling-information-legal-updates__list-title {
    font-size: 1.4em;
    color: #1A2E4C;
    margin-bottom: 10px;
}

.page-gambling-information-legal-updates__list-text {
    color: #555555;
    font-size: 1em;
}

.page-gambling-information-legal-updates__cta-block {
    background-color: #1A2E4C; /* Dark blue background */
    color: #FFFFFF;
    padding: 40px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-gambling-information-legal-updates__cta-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 25px;
    filter: invert(1) brightness(1.5); /* Make icon visible on dark background */
}

.page-gambling-information-legal-updates__cta-content {
    max-width: 700px;
}

.page-gambling-information-legal-updates__cta-title {
    font-size: 2em;
    color: #FFD700; /* Gold for CTA title */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gambling-information-legal-updates__cta-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gambling-information-legal-updates__hero-title {
        font-size: 2.5em;
    }
    .page-gambling-information-legal-updates__hero-subtitle {
        font-size: 1.2em;
    }
    .page-gambling-information-legal-updates__section-title {
        font-size: 2em;
    }
    .page-gambling-information-legal-updates__feature-item,
    .page-gambling-information-legal-updates__commitment-item {
        flex: 1 1 calc(50% - 30px);
    }
    .page-gambling-information-legal-updates__cta-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-gambling-information-legal-updates__hero {
        padding: 60px 15px;
    }
    .page-gambling-information-legal-updates__hero-title {
        font-size: 2em;
    }
    .page-gambling-information-legal-updates__hero-subtitle {
        font-size: 1em;
    }
    .page-gambling-information-legal-updates__section {
        padding: 40px 0;
    }
    .page-gambling-information-legal-updates__section-title {
        font-size: 1.8em;
    }
    .page-gambling-information-legal-updates__sub-title {
        font-size: 1.5em;
    }
    .page-gambling-information-legal-updates__text {
        font-size: 1em;
    }
    .page-gambling-information-legal-updates__features,
    .page-gambling-information-legal-updates__commitment-grid {
        flex-direction: column;
        gap: 20px;
    }
    .page-gambling-information-legal-updates__feature-item,
    .page-gambling-information-legal-updates__commitment-item {
        flex: 1 1 100%;
    }
    .page-gambling-information-legal-updates__btn {
        padding: 12px 24px;
        font-size: 1em;
    }
    .page-gambling-information-legal-updates__cta-block {
        padding: 30px;
    }
    .page-gambling-information-legal-updates__cta-title {
        font-size: 1.5em;
    }
    .page-gambling-information-legal-updates__cta-text {
        font-size: 1em;
    }
}