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

.page-industry-news__hero {
    background-color: #1A202C;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.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__hero .page-industry-news__container {
    position: relative;
    z-index: 1;
}

.page-industry-news__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #FFFFFF;
}

.page-industry-news__highlight {
    color: #FFD700;
}

.page-industry-news__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

.page-industry-news__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

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

.page-industry-news__btn--primary:hover {
    background-color: #e5c100;
    transform: translateY(-2px);
}

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

.page-industry-news__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
}

.page-industry-news__section {
    padding: 60px 0;
    background-color: #FFFFFF;
    color: #1A202C;
}

.page-industry-news__bg-dark {
    background-color: #1A202C;
    color: #E0E0E0;
}

.page-industry-news__bg-dark .page-industry-news__section-title, 
.page-industry-news__bg-dark .page-industry-news__list-title {
    color: #FFD700;
}

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

.page-industry-news__text {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.page-industry-news__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-industry-news__list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.page-industry-news__list-item {
    background-color: #2D3748;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-industry-news__list-item:hover {
    transform: translateY(-5px);
}

.page-industry-news__list-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-industry-news__list-item .page-industry-news__text {
    color: #CBD5E0;
    margin-bottom: 0;
}

.page-industry-news__news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-industry-news__news-card {
    background-color: #2D3748;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-industry-news__news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.page-industry-news__news-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.page-industry-news__news-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-industry-news__news-title {
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.page-industry-news__news-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-industry-news__news-title a:hover {
    color: #e5c100;
}

.page-industry-news__news-description {
    font-size: 1em;
    line-height: 1.6;
    color: #CBD5E0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-industry-news__read-more {
    display: inline-block;
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #FFD700;
    padding: 10px 20px;
    border-radius: 5px;
    align-self: flex-start;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-industry-news__read-more:hover {
    background-color: #FFD700;
    color: #1A202C;
}

.page-industry-news__cta-section {
    background-color: #2D3748;
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.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__cta-content {
    position: relative;
    z-index: 1;
}

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

.page-industry-news__cta-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #CBD5E0;
}

.page-industry-news__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-industry-news__floating-cta {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.page-industry-news__floating-btn {
    background-color: #FFD700;
    color: #1A202C;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
}

.page-industry-news__floating-btn:hover {
    background-color: #e5c100;
    transform: translateY(-3px);
}

.page-industry-news__floating-icon {
    font-size: 1.4em;
    line-height: 1;
}

@media (max-width: 768px) {
    .page-industry-news__hero-title {
        font-size: 2.5em;
    }
    .page-industry-news__hero-description {
        font-size: 1em;
    }
    .page-industry-news__section-title {
        font-size: 2em;
    }
    .page-industry-news__news-grid {
        grid-template-columns: 1fr;
    }
    .page-industry-news__cta-title {
        font-size: 2em;
    }
    .page-industry-news__cta-description {
        font-size: 1em;
    }
    .page-industry-news__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-industry-news__floating-btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-industry-news__floating-cta {
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .page-industry-news__hero {
        padding: 60px 0;
    }
    .page-industry-news__hero-title {
        font-size: 2em;
    }
    .page-industry-news__section-title {
        font-size: 1.8em;
    }
    .page-industry-news__cta-title {
        font-size: 1.8em;
    }
    .page-industry-news__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}