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

/* General Page Styling */
.page-industry-news-tech-innovation {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-industry-news-tech-innovation__section {
    padding: 60px 0;
}

.page-industry-news-tech-innovation__section--alt-bg {
    background-color: #f0f0f0;
}

.page-industry-news-tech-innovation__section-title {
    font-size: 2.5em;
    color: #CC0000; /* Main brand color for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-industry-news-tech-innovation__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00; /* Auxiliary color for accent */
    border-radius: 2px;
}

.page-industry-news-tech-innovation__sub-title {
    font-size: 1.6em;
    color: #CC0000;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-industry-news-tech-innovation__highlight {
    color: #CC0000;
    font-weight: bold;
}

/* Hero Section */
.page-industry-news-tech-innovation__hero {
    background: linear-gradient(135deg, #CC0000 0%, #a60000 100%); /* Darker red gradient for better contrast with white text */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.page-industry-news-tech-innovation__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page-industry-news-tech-innovation__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

/* Buttons */
.page-industry-news-tech-innovation__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-industry-news-tech-innovation__btn--primary {
    background-color: #FFCC00; /* Auxiliary color for primary button background */
    color: #333333; /* Dark text for contrast */
    border: 2px solid #FFCC00;
}

.page-industry-news-tech-innovation__btn--primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-2px);
}

.page-industry-news-tech-innovation__btn--secondary {
    background-color: #CC0000; /* Main brand color for secondary button background */
    color: #ffffff; /* White text for contrast */
    border: 2px solid #CC0000;
    margin-left: 15px;
}

.page-industry-news-tech-innovation__btn--secondary:hover {
    background-color: #a60000;
    border-color: #a60000;
    transform: translateY(-2px);
}

.page-industry-news-tech-innovation__btn--large {
    font-size: 1.3em;
    padding: 18px 35px;
    margin-top: 30px;
}

/* Content Grid */
.page-industry-news-tech-innovation__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.page-industry-news-tech-innovation__content-grid--reverse {
    grid-template-columns: 1fr 1fr;
}

.page-industry-news-tech-innovation__content-image {
    text-align: center;
}

.page-industry-news-tech-innovation__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.page-industry-news-tech-innovation__cta-section {
    text-align: center;
    padding: 80px 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

.page-industry-news-tech-innovation__cta-section .page-industry-news-tech-innovation__section-title {
    margin-bottom: 20px;
}

.page-industry-news-tech-innovation__cta-section .page-industry-news-tech-innovation__description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

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

.page-industry-news-tech-innovation__platform-image {
    margin-top: 40px;
}

/* FAQ Section */
.page-industry-news-tech-innovation__faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.page-industry-news-tech-innovation__faq-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #FFCC00;
}

.page-industry-news-tech-innovation__faq-item p {
    margin-top: 10px;
    color: #555555;
}

.page-industry-news-tech-innovation__call-to-action {
    background: linear-gradient(135deg, #CC0000 0%, #FFCC00 100%);
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
}

.page-industry-news-tech-innovation__call-to-action .page-industry-news-tech-innovation__section-title,
.page-industry-news-tech-innovation__call-to-action .page-industry-news-tech-innovation__description {
    color: #ffffff;
}

.page-industry-news-tech-innovation__call-to-action .page-industry-news-tech-innovation__btn--primary {
    background-color: #ffffff;
    color: #CC0000;
    border-color: #ffffff;
}

.page-industry-news-tech-innovation__call-to-action .page-industry-news-tech-innovation__btn--primary:hover {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-news-tech-innovation__content-grid {
        grid-template-columns: 1fr;
    }

    .page-industry-news-tech-innovation__content-grid--reverse {
        grid-template-columns: 1fr;
    }

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

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

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

    .page-industry-news-tech-innovation__sub-title {
        font-size: 1.4em;
    }

    .page-industry-news-tech-innovation__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-industry-news-tech-innovation__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    
    .page-industry-news-tech-innovation__btn--secondary {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .page-industry-news-tech-innovation__hero {
        padding: 80px 0;
    }

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

    .page-industry-news-tech-innovation__hero-subtitle {
        font-size: 1em;
    }

    .page-industry-news-tech-innovation__section {
        padding: 40px 0;
    }

    .page-industry-news-tech-innovation__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-industry-news-tech-innovation__sub-title {
        font-size: 1.2em;
    }

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

    .page-industry-news-tech-innovation__btn--secondary {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .page-industry-news-tech-innovation__hero-title {
        font-size: 1.8em;
    }

    .page-industry-news-tech-innovation__section-title {
        font-size: 1.5em;
    }

    .page-industry-news-tech-innovation__btn {
        width: 100%;
        margin-left: 0 !important;
    }
    .page-industry-news-tech-innovation__btn--secondary {
        margin-top: 10px;
    }
}