/* style/industry-news-tech-innovations.css */
.page-industry-news-tech-innovations {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

.page-industry-news-tech-innovations__hero {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-industry-news-tech-innovations__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 193, 7, 0.1), rgba(0, 123, 255, 0.1) 70%);
    transform: rotate(45deg);
    opacity: 0.3;
    z-index: 0;
}

.page-industry-news-tech-innovations__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    color: #fff;
    line-height: 1.2;
}

.page-industry-news-tech-innovations__title .highlight {
    color: #ffc107;
}

.page-industry-news-tech-innovations__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

.page-industry-news-tech-innovations__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.page-industry-news-tech-innovations__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    border: 2px solid transparent;
}

.page-industry-news-tech-innovations__btn--primary {
    background-color: #ffc107;
    color: #0056b3;
    border-color: #ffc107;
}

.page-industry-news-tech-innovations__btn--primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: #003e80;
    transform: translateY(-3px);
}

.page-industry-news-tech-innovations__btn--secondary {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.page-industry-news-tech-innovations__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffc107;
    color: #ffc107;
    transform: translateY(-3px);
}

.page-industry-news-tech-innovations__section {
    padding: 80px 0;
}

.page-industry-news-tech-innovations__section--alt-bg {
    background-color: #e9ecef;
}

.page-industry-news-tech-innovations__section--dark-bg {
    background-color: #007bff;
    color: #fff;
}

.page-industry-news-tech-innovations__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 60px;
    font-weight: bold;
    position: relative;
}

.page-industry-news-tech-innovations__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #ffc107;
    margin: 20px auto 0;
    border-radius: 2px;
}

.page-industry-news-tech-innovations__section--dark-bg .page-industry-news-tech-innovations__section-title,
.page-industry-news-tech-innovations__cta-title {
    color: #fff;
}

.page-industry-news-tech-innovations__section--dark-bg .page-industry-news-tech-innovations__section-title::after,
.page-industry-news-tech-innovations__cta-title::after {
    background-color: #ffc107;
}

.page-industry-news-tech-innovations__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.page-industry-news-tech-innovations__content-grid--reverse {
    grid-template-areas: "image text";
}

.page-industry-news-tech-innovations__content-grid--reverse .page-industry-news-tech-innovations__text-content {
    grid-area: text;
}

.page-industry-news-tech-innovations__content-grid--reverse .page-industry-news-tech-innovations__image-wrapper {
    grid-area: image;
}

.page-industry-news-tech-innovations__text-content h3 {
    font-size: 1.8em;
    color: #0056b3;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-industry-news-tech-innovations__text-content p {
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.7;
    color: #495057;
}

.page-industry-news-tech-innovations__section--dark-bg .page-industry-news-tech-innovations__text-content p,
.page-industry-news-tech-innovations__cta-description {
    color: rgba(255, 255, 255, 0.9);
}

.page-industry-news-tech-innovations__section--dark-bg .page-industry-news-tech-innovations__text-content h3 {
    color: #ffc107;
}

.page-industry-news-tech-innovations__image-wrapper {
    text-align: center;
}

.page-industry-news-tech-innovations__image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.page-industry-news-tech-innovations__image:hover {
    transform: scale(1.02);
}

.page-industry-news-tech-innovations__cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(90deg, #007bff, #0056b3);
    color: #fff;
}

.page-industry-news-tech-innovations__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.page-industry-news-tech-innovations__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

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

.page-industry-news-tech-innovations__btn--tertiary {
    background-color: #fff;
    color: #007bff;
    border-color: #fff;
}

.page-industry-news-tech-innovations__btn--tertiary:hover {
    background-color: #f0f0f0;
    color: #0056b3;
    border-color: #f0f0f0;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-news-tech-innovations__title {
        font-size: 2.5em;
    }
    .page-industry-news-tech-innovations__subtitle {
        font-size: 1.1em;
    }
    .page-industry-news-tech-innovations__section-title {
        font-size: 2em;
    }
    .page-industry-news-tech-innovations__content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .page-industry-news-tech-innovations__content-grid--reverse {
        grid-template-areas: unset;
    }
    .page-industry-news-tech-innovations__text-content h3 {
        font-size: 1.5em;
    }
    .page-industry-news-tech-innovations__hero-buttons,
    .page-industry-news-tech-innovations__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-industry-news-tech-innovations__btn {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .page-industry-news-tech-innovations__hero {
        padding: 80px 0 60px;
    }
    .page-industry-news-tech-innovations__title {
        font-size: 2em;
    }
    .page-industry-news-tech-innovations__subtitle {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-industry-news-tech-innovations__section {
        padding: 60px 0;
    }
    .page-industry-news-tech-innovations__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-industry-news-tech-innovations__text-content h3 {
        font-size: 1.3em;
    }
    .page-industry-news-tech-innovations__text-content p {
        font-size: 1em;
    }
    .page-industry-news-tech-innovations__cta {
        padding: 80px 0;
    }
    .page-industry-news-tech-innovations__cta-title {
        font-size: 2em;
    }
    .page-industry-news-tech-innovations__cta-description {
        font-size: 1.1em;
        margin-bottom: 30px;
    }
    .page-industry-news-tech-innovations__btn {
        width: 90%;
    }
}