/* style/industry-insights-tech-impact.css */

:root {
    --e2bet-primary-color: #0A1931;
    --e2bet-secondary-color: #FFD700;
    --e2bet-accent-color: #DC143C; /* For call to action */
    --e2bet-text-light: #F8F8F8;
    --e2bet-text-dark: #333333;
    --e2bet-background-dark: #0A1931;
    --e2bet-background-light: #FFFFFF;
    --e2bet-border-color: #334155;
}

.page-industry-insights-tech-impact {
    font-family: 'Arial', sans-serif;
    color: var(--e2bet-text-light);
    background-color: var(--e2bet-background-dark);
    line-height: 1.6;
}

.page-industry-insights-tech-impact__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-industry-insights-tech-impact__hero-section {
    background: linear-gradient(135deg, var(--e2bet-primary-color) 0%, #1a2a47 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-industry-insights-tech-impact__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,tech_pattern,dark_gradient]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-industry-insights-tech-impact__hero-title {
    font-size: 3.5em;
    color: var(--e2bet-secondary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-industry-insights-tech-impact__hero-description {
    font-size: 1.2em;
    color: var(--e2bet-text-light);
    max-width: 800px;
    margin: 0 auto 30px auto;
    position: relative;
    z-index: 1;
}

.page-industry-insights-tech-impact__cta-button {
    display: inline-block;
    background-color: var(--e2bet-accent-color);
    color: var(--e2bet-text-light);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.page-industry-insights-tech-impact__cta-button:hover {
    background-color: #e04a62; /* Slightly lighter red */
    transform: translateY(-3px);
}

.page-industry-insights-tech-impact__content-section {
    padding: 60px 0;
    background-color: var(--e2bet-background-dark);
}

.page-industry-insights-tech-impact__section-title {
    font-size: 2.5em;
    color: var(--e2bet-secondary-color);
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--e2bet-secondary-color);
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.page-industry-insights-tech-impact__sub-section-title {
    font-size: 1.8em;
    color: var(--e2bet-text-light);
    margin-top: 35px;
    margin-bottom: 15px;
    border-left: 5px solid var(--e2bet-secondary-color);
    padding-left: 15px;
}

.page-industry-insights-tech-impact__text-block {
    font-size: 1.05em;
    color: var(--e2bet-text-light);
    margin-bottom: 20px;
    text-align: justify;
}

.page-industry-insights-tech-impact__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-industry-insights-tech-impact__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.page-industry-insights-tech-impact__image:hover {
    transform: scale(1.02);
}

.page-industry-insights-tech-impact__cta-block {
    background-color: var(--e2bet-primary-color);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--e2bet-border-color);
}

.page-industry-insights-tech-impact__cta-text {
    font-size: 1.5em;
    color: var(--e2bet-secondary-color);
    margin-bottom: 25px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-industry-insights-tech-impact__hero-title {
        font-size: 2.5em;
    }

    .page-industry-insights-tech-impact__hero-description {
        font-size: 1em;
    }

    .page-industry-insights-tech-impact__section-title {
        font-size: 2em;
    }

    .page-industry-insights-tech-impact__sub-section-title {
        font-size: 1.5em;
    }

    .page-industry-insights-tech-impact__text-block {
        font-size: 0.95em;
    }

    .page-industry-insights-tech-impact__cta-text {
        font-size: 1.2em;
    }

    .page-industry-insights-tech-impact__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-industry-insights-tech-impact__hero-title {
        font-size: 2em;
    }

    .page-industry-insights-tech-impact__hero-section {
        padding: 60px 0;
    }

    .page-industry-insights-tech-impact__section-title {
        font-size: 1.8em;
    }

    .page-industry-insights-tech-impact__sub-section-title {
        font-size: 1.3em;
    }

    .page-industry-insights-tech-impact__content-section {
        padding: 40px 0;
    }

    .page-industry-insights-tech-impact__cta-block {
        padding: 30px 20px;
    }
}