/* style/industry-news-tech-innovations.css */

/* Biến CSS */
:root {
    --page-primary-color: #007bff;
    --page-secondary-color: #ffc107;
    --page-dark-text: #212529;
    --page-light-text: #f8f9fa;
    --page-background-light: #ffffff;
    --page-background-dark: #f0f2f5;
    --page-border-color: #dee2e6;
}

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

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

.page-industry-news-tech-innovations__section {
    padding: 60px 0;
    text-align: center;
}

.page-industry-news-tech-innovations__alt-bg {
    background-color: var(--page-background-dark);
}

.page-industry-news-tech-innovations__section-title {
    font-size: 2.5em;
    color: var(--page-primary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-industry-news-tech-innovations__hero {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, #0056b3 100%); /* Darker variant for better contrast */
    color: var(--page-light-text);
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.page-industry-news-tech-innovations__hero-content {
    max-width: 600px;
    z-index: 1;
    padding: 0 20px;
}

.page-industry-news-tech-innovations__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--page-light-text);
}

.page-industry-news-tech-innovations__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.page-industry-news-tech-innovations__hero-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 0.7;
    z-index: 0;
}

.page-industry-news-tech-innovations__hero-image {
    height: 100%;
    width: auto;
    object-fit: cover;
    object-position: center right;
}

.page-industry-news-tech-innovations__cta-button {
    display: inline-block;
    background-color: var(--page-secondary-color);
    color: var(--page-dark-text);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-industry-news-tech-innovations__cta-button:hover {
    background-color: #e0a800; /* Darker secondary for hover */
    transform: translateY(-3px);
}

.page-industry-news-tech-innovations__introduction p {
    max-width: 800px;
    margin: 0 auto 20px auto;
    font-size: 1.1em;
    color: var(--page-dark-text);
}

.page-industry-news-tech-innovations__tech-features .page-industry-news-tech-innovations__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.page-industry-news-tech-innovations__tech-features .page-industry-news-tech-innovations__feature-item {
    background-color: var(--page-background-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-industry-news-tech-innovations__tech-features .page-industry-news-tech-innovations__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-industry-news-tech-innovations__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-industry-news-tech-innovations__feature-heading {
    font-size: 1.6em;
    color: var(--page-primary-color);
    margin-bottom: 15px;
}

.page-industry-news-tech-innovations__feature-item p {
    font-size: 1em;
    color: var(--page-dark-text);
}

.page-industry-news-tech-innovations__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-industry-news-tech-innovations__list li {
    background-color: var(--page-background-light);
    border-left: 5px solid var(--page-primary-color);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: var(--page-dark-text);
}

.page-industry-news-tech-innovations__list li strong {
    color: var(--page-primary-color);
}

.page-industry-news-tech-innovations__image-full-width {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-industry-news-tech-innovations__content-columns {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-industry-news-tech-innovations__column-item {
    flex: 1;
    min-width: 300px;
    max-width: 45%;
    background-color: var(--page-background-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-industry-news-tech-innovations__column-image {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-industry-news-tech-innovations__image-center {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 800px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-industry-news-tech-innovations__cta-button--center {
    margin-top: 40px;
    text-align: center;
}

.page-industry-news-tech-innovations__why-betvisa-tech .page-industry-news-tech-innovations__list {
    text-align: left;
}

.page-industry-news-tech-innovations__list--large-icon li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
}

.page-industry-news-tech-innovations__list-icon {
    font-size: 1.8em;
    color: var(--page-secondary-color);
    line-height: 1;
    flex-shrink: 0;
}

.page-industry-news-tech-innovations__cta-section {
    background-color: var(--page-primary-color);
    color: var(--page-light-text);
    padding: 80px 0;
}

.page-industry-news-tech-innovations__cta-content {
    max-width: 800px;
}

.page-industry-news-tech-innovations__cta-title {
    font-size: 2.8em;
    color: var(--page-light-text);
    margin-bottom: 20px;
}

.page-industry-news-tech-innovations__cta-text {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.page-industry-news-tech-innovations__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-industry-news-tech-innovations__cta-button--secondary {
    background-color: var(--page-light-text);
    color: var(--page-primary-color);
}

.page-industry-news-tech-innovations__cta-button--secondary:hover {
    background-color: #e2e6ea;
    color: #0056b3;
}

.page-industry-news-tech-innovations__conclusion p {
    max-width: 900px;
    margin: 0 auto 20px auto;
    font-size: 1.1em;
    color: var(--page-dark-text);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-news-tech-innovations__hero {
        flex-direction: column;
        text-align: center;
        padding: 80px 20px;
        min-height: auto;
    }

    .page-industry-news-tech-innovations__hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .page-industry-news-tech-innovations__hero-title {
        font-size: 2.8em;
    }

    .page-industry-news-tech-innovations__hero-subtitle {
        font-size: 1.1em;
    }

    .page-industry-news-tech-innovations__hero-image-wrapper {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 40px;
        opacity: 1;
    }

    .page-industry-news-tech-innovations__hero-image {
        width: 100%;
        height: 100%;
        object-position: center;
    }

    .page-industry-news-tech-innovations__section-title {
        font-size: 2em;
    }

    .page-industry-news-tech-innovations__tech-features .page-industry-news-tech-innovations__feature-grid,
    .page-industry-news-tech-innovations__content-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-industry-news-tech-innovations__column-item {
        max-width: 100%;
    }

    .page-industry-news-tech-innovations__cta-title {
        font-size: 2.2em;
    }

    .page-industry-news-tech-innovations__cta-text {
        font-size: 1em;
    }

    .page-industry-news-tech-innovations__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-industry-news-tech-innovations__cta-button {
        width: 100%;
        max-width: 300px;
    }

    .page-industry-news-tech-innovations__list li {
        font-size: 1em;
    }
}

@media (max-width: 576px) {
    .page-industry-news-tech-innovations__hero-title {
        font-size: 2.2em;
    }

    .page-industry-news-tech-innovations__hero-subtitle {
        font-size: 0.95em;
    }

    .page-industry-news-tech-innovations__section-title {
        font-size: 1.8em;
    }

    .page-industry-news-tech-innovations__feature-heading {
        font-size: 1.4em;
    }

    .page-industry-news-tech-innovations__cta-title {
        font-size: 1.8em;
    }
}