/* style/industry-news.css */
.page-industry-news {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #e5dfd3; /* Light text for dark background */
    background-color: #1A202C;
}

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

.page-industry-news__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a414e 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-industry-news__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-industry-news__hero-subtitle {
    font-size: 1.3em;
    color: #e5dfd3;
    margin-bottom: 40px;
    max-width: 800px;
    z-index: 1;
}

.page-industry-news__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
}

.page-industry-news__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 10px;
    z-index: 1;
    position: relative;
}

.page-industry-news__btn--primary {
    background-color: #FFD700;
    color: #1A202C;
    border: 2px solid #FFD700;
}

.page-industry-news__btn--primary:hover {
    background-color: #b39700;
    border-color: #b39700;
    color: #1A202C;
}

.page-industry-news__btn--secondary {
    background-color: #1A202C;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-industry-news__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
}

.page-industry-news__btn--outline {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-industry-news__btn--outline:hover {
    background-color: #FFD700;
    color: #1A202C;
}

.page-industry-news__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-industry-news__section--dark {
    background-color: #2a313e;
}

.page-industry-news__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-industry-news__sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-industry-news__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e5dfd3;
}

.page-industry-news__image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-industry-news__section--cta {
    background: linear-gradient(90deg, #FFD700 0%, #b39700 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-industry-news__cta-content {
    color: #1A202C;
    z-index: 1;
    position: relative;
}

.page-industry-news__cta-title {
    font-size: 2.8em;
    color: #1A202C;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-industry-news__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-industry-news__faq-list {
    margin-top: 40px;
}

.page-industry-news__faq-item {
    background-color: #2a313e;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-industry-news__faq-question {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-industry-news__faq-answer {
    font-size: 1.1em;
    color: #e5dfd3;
}

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

    .page-industry-news__hero-subtitle {
        font-size: 1.1em;
    }

    .page-industry-news__section-title {
        font-size: 2em;
    }

    .page-industry-news__sub-title {
        font-size: 1.5em;
    }

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

    .page-industry-news__cta-title {
        font-size: 2em;
    }

    .page-industry-news__faq-question {
        font-size: 1.3em;
    }
}

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

    .page-industry-news__hero-subtitle {
        font-size: 1em;
    }

    .page-industry-news__section-title {
        font-size: 1.8em;
    }

    .page-industry-news__sub-title {
        font-size: 1.3em;
    }

    .page-industry-news__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-industry-news__cta-title {
        font-size: 1.8em;
    }

    .page-industry-news__faq-question {
        font-size: 1.1em;
    }
}