.page-blog-expert-insights {
    color: #333333; /* Dark text for light body background */
}

.page-blog-expert-insights__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    background-color: #000000; /* Main color for hero background */
    color: #FFFFFF; /* White text on dark background */
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding-bottom: 40px;
}

.page-blog-expert-insights__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4; /* Slightly dim the image for text readability */
    z-index: 0;
}

.page-blog-expert-insights__hero-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.page-blog-expert-insights__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FCBC45; /* Accent color for title */
    font-weight: 700;
    line-height: 1.2;
}

.page-blog-expert-insights__hero-description {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #F0F0F0;
}

.page-blog-expert-insights__hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-blog-expert-insights__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-blog-expert-insights__button--primary {
    background-color: #FCBC45; /* Login button color */
    color: #000000; /* Dark text on accent background */
    border: 2px solid #FCBC45;
}

.page-blog-expert-insights__button--primary:hover {
    background-color: #e0a53b;
    transform: translateY(-2px);
}

.page-blog-expert-insights__button--secondary {
    background-color: transparent;
    color: #FFFFFF; /* White text on dark background */
    border: 2px solid #FFFFFF;
}

.page-blog-expert-insights__button--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-blog-expert-insights__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-blog-expert-insights__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-blog-expert-insights__section-title {
    font-size: 2.8em;
    color: #000000; /* Dark text for section titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-blog-expert-insights__section-description {
    font-size: 1.1em;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.page-blog-expert-insights__introduction,
.page-blog-expert-insights__core-strategies,
.page-blog-expert-insights__market-trends,
.page-blog-expert-insights__platform-support,
.page-blog-expert-insights__responsible-gaming,
.page-blog-expert-insights__cta-final {
    padding: 60px 0;
}

.page-blog-expert-insights__introduction {
    background-color: #F8F8F8;
}

.page-blog-expert-insights__core-strategies {
    background-color: #FFFFFF;
}

.page-blog-expert-insights__market-trends {
    background-color: #F8F8F8;
}

.page-blog-expert-insights__platform-support {
    background-color: #FFFFFF;
}

.page-blog-expert-insights__responsible-gaming {
    background-color: #000000; /* Dark background */
    color: #FFFFFF; /* White text */
}

.page-blog-expert-insights__responsible-gaming .page-blog-expert-insights__section-title,
.page-blog-expert-insights__responsible-gaming .page-blog-expert-insights__section-description {
    color: #FFFFFF;
}

.page-blog-expert-insights__responsible-gaming .page-blog-expert-insights__button--primary {
    background-color: #FCBC45;
    color: #000000;
    border-color: #FCBC45;
}

.page-blog-expert-insights__responsible-gaming .page-blog-expert-insights__button--primary:hover {
    background-color: #e0a53b;
}

.page-blog-expert-insights__cta-final {
    background-color: #000000;
    color: #FFFFFF;
}

.page-blog-expert-insights__cta-final .page-blog-expert-insights__section-title,
.page-blog-expert-insights__cta-final .page-blog-expert-insights__section-description {
    color: #FFFFFF;
}

.page-blog-expert-insights__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.page-blog-expert-insights__features,
.page-blog-expert-insights__platform-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-blog-expert-insights__feature-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-blog-expert-insights__feature-item:hover {
    transform: translateY(-5px);
}

.page-blog-expert-insights__feature-icon {
    width: 200px; /* Minimum size for content images */
    height: 150px; /* Adjusted height for aspect ratio */
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-blog-expert-insights__feature-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
}

.page-blog-expert-insights__feature-text {
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
}

.page-blog-expert-insights__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-blog-expert-insights__strategy-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.page-blog-expert-insights__strategy-card:hover {
    transform: translateY(-5px);
}

.page-blog-expert-insights__card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistent card appearance */
    object-fit: cover;
}

.page-blog-expert-insights__card-title {
    font-size: 1.4em;
    color: #000000;
    padding: 20px 20px 10px 20px;
}

.page-blog-expert-insights__card-title a {
    text-decoration: none;
    color: inherit;
}

.page-blog-expert-insights__card-title a:hover {
    color: #FCBC45;
}

.page-blog-expert-insights__card-text {
    font-size: 0.95em;
    line-height: 1.6;
    color: #555555;
    padding: 0 20px 20px 20px;
    flex-grow: 1;
}

.page-blog-expert-insights__strategy-card .page-blog-expert-insights__button {
    margin: 0 20px 20px 20px;
    align-self: flex-start;
    background-color: #000000; /* Dark button for contrast */
    color: #FFFFFF;
    border: 2px solid #000000;
}

.page-blog-expert-insights__strategy-card .page-blog-expert-insights__button:hover {
    background-color: #333333;
    border-color: #333333;
}

.page-blog-expert-insights__trend-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-blog-expert-insights__trend-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-blog-expert-insights__trend-card:hover {
    transform: translateY(-5px);
}

.page-blog-expert-insights__trend-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
}

.page-blog-expert-insights__trend-text {
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-blog-expert-insights__hero-title {
        font-size: 2.8em;
    }

    .page-blog-expert-insights__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-blog-expert-insights__hero-title {
        font-size: 2.2em;
    }

    .page-blog-expert-insights__hero-description {
        font-size: 1em;
    }

    .page-blog-expert-insights__hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .page-blog-expert-insights__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .page-blog-expert-insights__section-title {
        font-size: 1.8em;
    }

    .page-blog-expert-insights__features,
    .page-blog-expert-insights__strategy-grid,
    .page-blog-expert-insights__trend-cards,
    .page-blog-expert-insights__platform-features {
        grid-template-columns: 1fr;
    }

    .page-blog-expert-insights__feature-icon,
    .page-blog-expert-insights__card-image {
        width: 100%;
        height: auto; /* Ensure images scale responsively */
        min-height: 200px; /* Enforce minimum height */
        max-width: 100%;
    }
    .page-blog-expert-insights img {
        max-width: 100%;
        height: auto;
    }

    .page-blog-expert-insights__feature-item,
    .page-blog-expert-insights__strategy-card,
    .page-blog-expert-insights__trend-card {
        padding: 20px;
    }

    .page-blog-expert-insights__card-title,
    .page-blog-expert-insights__feature-title,
    .page-blog-expert-insights__trend-title {
        font-size: 1.2em;
    }

    .page-blog-expert-insights__responsible-gaming .page-blog-expert-insights__button--primary {
        max-width: none;
    }

    .page-blog-expert-insights__cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-blog-expert-insights__hero-title {
        font-size: 1.8em;
    }

    .page-blog-expert-insights__section-title {
        font-size: 1.5em;
    }

    .page-blog-expert-insights__hero-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .page-blog-expert-insights__container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .page-blog-expert-insights__button {
        font-size: 1em;
        padding: 12px 20px;
    }
}