:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --page-bg: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

.page-news-latest-industry-update {
    background-color: var(--page-bg); /* Dark background */
    color: var(--text-main); /* Light text for main content */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    font-size: 16px;
}

.page-news-latest-industry-update__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image first, then content */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px 60px; /* Small top padding, more bottom */
    background-color: var(--page-bg);
    overflow: hidden;
}

.page-news-latest-industry-update__hero-image {
    width: 100%;
    max-width: 1920px;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 40px; /* Space between image and text */
}

.page-news-latest-industry-update__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1; /* Ensure content is above any potential background elements */
}

.page-news-latest-industry-update__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Using clamp as per rule */
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow effect */
}

.page-news-latest-industry-update__subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.page-news-latest-industry-update__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: var(--page-bg); /* Consistent background */
    color: var(--text-main); /* Light text for readability */
}

.page-news-latest-industry-update__container {
    max-width: 100%; /* Ensure container respects parent's width */
    margin: 0 auto;
}

.page-news-latest-industry-update__section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-top: 50px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.page-news-latest-industry-update__text-block {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 30px;
    text-align: justify;
}

.page-news-latest-industry-update__article-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-news-latest-industry-update__article-image {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-news-latest-industry-update__article-title {
    font-size: 1.75rem;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-news-latest-industry-update__article-text {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: justify;
}

.page-news-latest-industry-update__btn-primary,
.page-news-latest-industry-update__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    max-width: 100%; /* Button responsiveness */
    box-sizing: border-box; /* Button responsiveness */
    white-space: normal; /* Button responsiveness */
    word-wrap: break-word; /* Button responsiveness */
    margin: 10px;
}

.page-news-latest-industry-update__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main); /* Light text on dark/gradient button */
    border: none;
    box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-news-latest-industry-update__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 8px 20px rgba(17, 168, 78, 0.6);
    transform: translateY(-2px);
}

.page-news-latest-industry-update__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-news-latest-industry-update__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-main);
    transform: translateY(-2px);
}

/* FAQ Section */
.page-news-latest-industry-update__faq-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--divider-color);
}

.page-news-latest-industry-update__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-news-latest-industry-update__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    background-color: var(--deep-green);
    border-bottom: 1px solid var(--border-color);
}

.page-news-latest-industry-update__faq-question:hover {
    background-color: var(--primary-color);
}

.page-news-latest-industry-update__faq-qtext {
    flex-grow: 1;
}

.page-news-latest-industry-update__faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold-color);
    margin-left: 15px;
}

.page-news-latest-industry-update__faq-answer {
    padding: 0 25px;
    font-size: 1rem;
    color: var(--text-secondary);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding-bottom: 0;
}

.page-news-latest-industry-update__faq-item[open] .page-news-latest-industry-update__faq-answer {
    max-height: 500px; /* Sufficient height for answer content */
    padding-top: 15px;
    padding-bottom: 25px;
}

.page-news-latest-industry-update__faq-item[open] .page-news-latest-industry-update__faq-question {
    border-bottom: none;
}

.page-news-latest-industry-update__faq-answer p {
    margin: 0;
    color: var(--text-secondary); /* Ensure paragraph text is visible */
}

.page-news-latest-industry-update__faq-answer a {
    color: var(--gold-color);
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-news-latest-industry-update__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-news-latest-industry-update__subtitle {
        font-size: 1.1rem;
    }
    .page-news-latest-industry-update__section-title {
        font-size: 2rem;
    }
    .page-news-latest-industry-update__article-title {
        font-size: 1.5rem;
    }
    .page-news-latest-industry-update__hero-section {
        padding: 10px 15px 40px;
    }
    .page-news-latest-industry-update__content-area {
        padding: 40px 15px;
    }
}

@media (max-width: 768px) {
    .page-news-latest-industry-update {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-news-latest-industry-update__hero-section {
        padding: 10px 15px 30px; /* Small top padding, more bottom */
    }

    .page-news-latest-industry-update__hero-image {
        margin-bottom: 20px;
    }

    .page-news-latest-industry-update__hero-content {
        padding: 0 15px;
    }

    .page-news-latest-industry-update__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }

    .page-news-latest-industry-update__subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .page-news-latest-industry-update__btn-primary,
    .page-news-latest-industry-update__btn-secondary,
    .page-news-latest-industry-update a[class*="button"],
    .page-news-latest-industry-update a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
        margin: 10px 0 !important; /* Stack buttons vertically */
    }
    
    .page-news-latest-industry-update__cta-buttons,
    .page-news-latest-industry-update__button-group,
    .page-news-latest-industry-update__btn-container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      flex-direction: column !important; /* Stack buttons vertically */
      gap: 10px;
    }

    .page-news-latest-industry-update__content-area {
        padding: 30px 15px;
    }
    
    .page-news-latest-industry-update__section-title {
        font-size: 1.8rem;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .page-news-latest-industry-update__article-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .page-news-latest-industry-update__article-title {
        font-size: 1.3rem;
    }
    
    /* Mobile image responsiveness */
    .page-news-latest-industry-update img {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    
    .page-news-latest-industry-update__section,
    .page-news-latest-industry-update__card,
    .page-news-latest-industry-update__container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
    }
    
    .page-news-latest-industry-update__hero-section { /* specific for hero section */
        padding-top: 10px !important; /* body already handles --header-offset */
    }

    .page-news-latest-industry-update__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-news-latest-industry-update__faq-answer {
        padding: 0 20px;
    }
    .page-news-latest-industry-update__faq-item[open] .page-news-latest-industry-update__faq-answer {
        padding-top: 10px;
        padding-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .page-news-latest-industry-update__main-title {
        font-size: clamp(1.5rem, 9vw, 2rem);
    }
    .page-news-latest-industry-update__section-title {
        font-size: 1.5rem;
    }
    .page-news-latest-industry-update__article-title {
        font-size: 1.2rem;
    }
}

/* Contrast fix classes (if needed, though design should ensure contrast) */
.page-news-latest-industry-update__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-news-latest-industry-update__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}