/* style/industry-news-safety-responsibility.css */

/* General Page Styles */
.page-industry-news-safety-responsibility {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #f8f8f8;
}

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

.page-industry-news-safety-responsibility__section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-industry-news-safety-responsibility__section:nth-of-type(even) {
    background-color: #fefefe;
}

.page-industry-news-safety-responsibility__section-title {
    font-size: 2.5em;
    color: #CC0000; /* Main brand color */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
}

.page-industry-news-safety-responsibility__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFCC00; /* Auxiliary brand color */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-industry-news-safety-responsibility__sub-title {
    font-size: 1.8em;
    color: #CC0000;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-industry-news-safety-responsibility p {
    font-size: 1.1em;
    margin-bottom: 1em;
    color: #444444;
}

.page-industry-news-safety-responsibility .highlight {
    color: #CC0000;
    font-weight: bold;
}

.page-industry-news-safety-responsibility__list,
.page-industry-news-safety-responsibility__list--ordered {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 1.5em;
    color: #555555;
}

.page-industry-news-safety-responsibility__list--ordered {
    list-style-type: decimal;
}

.page-industry-news-safety-responsibility__list li,
.page-industry-news-safety-responsibility__list--ordered li {
    margin-bottom: 0.8em;
    font-size: 1.05em;
}

/* Buttons */
.page-industry-news-safety-responsibility__btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    margin-top: 20px;
}

.page-industry-news-safety-responsibility__btn--primary {
    background-color: #CC0000; /* Main brand color */
    color: #ffffff;
    border: 2px solid #CC0000;
}

.page-industry-news-safety-responsibility__btn--primary:hover {
    background-color: #990000;
    border-color: #990000;
    transform: translateY(-2px);
}

.page-industry-news-safety-responsibility__btn--secondary {
    background-color: #FFCC00; /* Auxiliary brand color */
    color: #333333;
    border: 2px solid #FFCC00;
    margin-left: 15px;
}

.page-industry-news-safety-responsibility__btn--secondary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-2px);
}

/* Hero Section */
.page-industry-news-safety-responsibility__hero {
    background: linear-gradient(135deg, #CC0000 0%, #FFCC00 100%); /* Gradient with brand colors */
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.page-industry-news-safety-responsibility__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: hero-pulse 10s infinite alternate;
}

@keyframes hero-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 0.6; }
}

.page-industry-news-safety-responsibility__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-industry-news-safety-responsibility__hero-subtitle {
    font-size: 1.4em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.5;
    color: #ffe0b3; /* Lighter shade for contrast */
}

.page-industry-news-safety-responsibility__hero .page-industry-news-safety-responsibility__btn {
    margin-top: 30px;
    background-color: #ffffff;
    color: #CC0000;
    border-color: #ffffff;
}

.page-industry-news-safety-responsibility__hero .page-industry-news-safety-responsibility__btn:hover {
    background-color: #f0f0f0;
    color: #990000;
    border-color: #f0f0f0;
}

/* Image Styling */
.page-industry-news-safety-responsibility__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

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

.page-industry-news-safety-responsibility__image:hover {
    transform: scale(1.02);
}

/* FAQ Section */
.page-industry-news-safety-responsibility__faq-item {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.page-industry-news-safety-responsibility__faq-question {
    font-size: 1.3em;
    color: #CC0000;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-industry-news-safety-responsibility__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    font-weight: bold;
    color: #FFCC00;
    transition: transform 0.3s ease;
}

.page-industry-news-safety-responsibility__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-industry-news-safety-responsibility__faq-answer {
    font-size: 1.05em;
    color: #555555;
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 15px;
    display: none; /* Hidden by default, toggled by JS */
}

.page-industry-news-safety-responsibility__faq-answer.active {
    display: block;
}

/* Call to Action Section */
.page-industry-news-safety-responsibility__section--cta {
    text-align: center;
    background-color: #FFCC00; /* Auxiliary brand color */
    color: #333333;
    padding: 80px 0;
}

.page-industry-news-safety-responsibility__section--cta .page-industry-news-safety-responsibility__section-title {
    color: #CC0000; /* Main brand color for title */
}

.page-industry-news-safety-responsibility__section--cta .page-industry-news-safety-responsibility__section-title::after {
    background-color: #CC0000;
}

.page-industry-news-safety-responsibility__section--cta p {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #444444;
}

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

.page-industry-news-safety-responsibility__cta-buttons .page-industry-news-safety-responsibility__btn {
    margin: 0;
}

.page-industry-news-safety-responsibility__cta-buttons .page-industry-news-safety-responsibility__btn--primary {
    background-color: #CC0000;
    color: #ffffff;
    border-color: #CC0000;
}

.page-industry-news-safety-responsibility__cta-buttons .page-industry-news-safety-responsibility__btn--primary:hover {
    background-color: #990000;
    border-color: #990000;
}

.page-industry-news-safety-responsibility__cta-buttons .page-industry-news-safety-responsibility__btn--secondary {
    background-color: #ffffff;
    color: #CC0000;
    border-color: #CC0000;
}

.page-industry-news-safety-responsibility__cta-buttons .page-industry-news-safety-responsibility__btn--secondary:hover {
    background-color: #f0f0f0;
    color: #990000;
    border-color: #990000;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-news-safety-responsibility__hero-title {
        font-size: 2.8em;
    }
    .page-industry-news-safety-responsibility__hero-subtitle {
        font-size: 1.2em;
    }
    .page-industry-news-safety-responsibility__section-title {
        font-size: 2em;
    }
    .page-industry-news-safety-responsibility__sub-title {
        font-size: 1.5em;
    }
    .page-industry-news-safety-responsibility p {
        font-size: 1em;
    }
    .page-industry-news-safety-responsibility__btn {
        padding: 10px 24px;
        font-size: 1em;
    }
    .page-industry-news-safety-responsibility__btn--secondary {
        margin-left: 10px;
    }
}

@media (max-width: 768px) {
    .page-industry-news-safety-responsibility__hero {
        padding: 80px 0;
    }
    .page-industry-news-safety-responsibility__hero-title {
        font-size: 2.2em;
    }
    .page-industry-news-safety-responsibility__hero-subtitle {
        font-size: 1.1em;
    }
    .page-industry-news-safety-responsibility__section {
        padding: 40px 0;
    }
    .page-industry-news-safety-responsibility__section-title {
        font-size: 1.8em;
    }
    .page-industry-news-safety-responsibility__sub-title {
        font-size: 1.3em;
    }
    .page-industry-news-safety-responsibility__faq-question {
        font-size: 1.2em;
    }
    .page-industry-news-safety-responsibility__cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .page-industry-news-safety-responsibility__btn--secondary {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .page-industry-news-safety-responsibility__hero {
        padding: 60px 0;
    }
    .page-industry-news-safety-responsibility__hero-title {
        font-size: 1.8em;
    }
    .page-industry-news-safety-responsibility__hero-subtitle {
        font-size: 1em;
    }
    .page-industry-news-safety-responsibility__section-title {
        font-size: 1.5em;
    }
    .page-industry-news-safety-responsibility__sub-title {
        font-size: 1.1em;
    }
    .page-industry-news-safety-responsibility__btn {
        padding: 8px 20px;
        font-size: 0.95em;
    }
    .page-industry-news-safety-responsibility p,
    .page-industry-news-safety-responsibility__list li,
    .page-industry-news-safety-responsibility__list--ordered li,
    .page-industry-news-safety-responsibility__faq-answer {
        font-size: 0.95em;
    }
}