/* style/industry-news-regulatory-analysis.css */

/* Biến CSS cho màu sắc */
:root {
  --page-industry-news-regulatory-analysis-primary-color: #1A237E; /* Deep Indigo */
  --page-industry-news-regulatory-analysis-accent-color: #FFD700; /* Bright Gold */
  --page-industry-news-regulatory-analysis-text-color-light: #F8F8F8; /* Off-white for dark backgrounds */
  --page-industry-news-regulatory-analysis-text-color-dark: #333333; /* Dark grey for light backgrounds */
  --page-industry-news-regulatory-analysis-background-light: #FFFFFF; /* White */
  --page-industry-news-regulatory-analysis-background-dark: #11184B; /* Darker Indigo */
  --page-industry-news-regulatory-analysis-highlight-text: #FFD700; /* Gold for highlight */
}

.page-industry-news-regulatory-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-industry-news-regulatory-analysis-text-color-dark);
  background-color: var(--page-industry-news-regulatory-analysis-background-light);
}

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

.page-industry-news-regulatory-analysis__hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--page-industry-news-regulatory-analysis-primary-color) 0%, #3a478d 100%); /* Adjusted for better gradient */
  color: var(--page-industry-news-regulatory-analysis-text-color-light);
  overflow: hidden;
}

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

.page-industry-news-regulatory-analysis__hero .page-industry-news-regulatory-analysis__container {
  position: relative;
  z-index: 1;
}

.page-industry-news-regulatory-analysis__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--page-industry-news-regulatory-analysis-accent-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-industry-news-regulatory-analysis__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  opacity: 0.9;
}

.page-industry-news-regulatory-analysis__section {
  padding: 80px 0;
  background-color: var(--page-industry-news-regulatory-analysis-background-light);
  color: var(--page-industry-news-regulatory-analysis-text-color-dark);
}

.page-industry-news-regulatory-analysis__section--dark {
  background-color: var(--page-industry-news-regulatory-analysis-background-dark);
  color: var(--page-industry-news-regulatory-analysis-text-color-light);
}

.page-industry-news-regulatory-analysis__section--dark .page-industry-news-regulatory-analysis__section-title,
.page-industry-news-regulatory-analysis__section--dark h3 {
  color: var(--page-industry-news-regulatory-analysis-accent-color);
}

.page-industry-news-regulatory-analysis__section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 60px;
  color: var(--page-industry-news-regulatory-analysis-primary-color);
  position: relative;
}

.page-industry-news-regulatory-analysis__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--page-industry-news-regulatory-analysis-accent-color);
  margin: 20px auto 0;
  border-radius: 2px;
}

.page-industry-news-regulatory-analysis p {
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-industry-news-regulatory-analysis .highlight-text {
  color: var(--page-industry-news-regulatory-analysis-accent-color);
  font-weight: bold;
}

.page-industry-news-regulatory-analysis__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 10px;
  cursor: pointer;
}

.page-industry-news-regulatory-analysis__btn--primary {
  background-color: var(--page-industry-news-regulatory-analysis-accent-color);
  color: var(--page-industry-news-regulatory-analysis-primary-color);
  border: 2px solid var(--page-industry-news-regulatory-analysis-accent-color);
}

.page-industry-news-regulatory-analysis__btn--primary:hover {
  background-color: #e5c100; /* Slightly darker gold */
  border-color: #e5c100;
  transform: translateY(-3px);
}

.page-industry-news-regulatory-analysis__btn--secondary {
  background-color: transparent;
  color: var(--page-industry-news-regulatory-analysis-accent-color);
  border: 2px solid var(--page-industry-news-regulatory-analysis-accent-color);
}

.page-industry-news-regulatory-analysis__btn--secondary:hover {
  background-color: var(--page-industry-news-regulatory-analysis-accent-color);
  color: var(--page-industry-news-regulatory-analysis-primary-color);
  transform: translateY(-3px);
}

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

.page-industry-news-regulatory-analysis__grid-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly visible background for dark section */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-industry-news-regulatory-analysis__grid-item img {
  max-width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 25px;
  border-radius: 8px;
}

.page-industry-news-regulatory-analysis__grid-item h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: var(--page-industry-news-regulatory-analysis-accent-color);
}

.page-industry-news-regulatory-analysis__grid-item p {
  font-size: 1em;
  line-height: 1.7;
  color: var(--page-industry-news-regulatory-analysis-text-color-light);
}

.page-industry-news-regulatory-analysis__content-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
}

.page-industry-news-regulatory-analysis__content-block:nth-child(odd) {
  flex-direction: row-reverse; /* Image on right */
}

.page-industry-news-regulatory-analysis__content-block h3 {
  font-size: 2em;
  margin-bottom: 20px;
  color: var(--page-industry-news-regulatory-analysis-accent-color);
  width: 100%;
}

.page-industry-news-regulatory-analysis__content-block p {
  flex: 1;
  min-width: 300px;
  padding: 0 20px;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-industry-news-regulatory-analysis__content-block img {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-industry-news-regulatory-analysis__image--right {
  margin-left: 40px;
}

.page-industry-news-regulatory-analysis__image--left {
  margin-right: 40px;
}

.page-industry-news-regulatory-analysis__list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-industry-news-regulatory-analysis__list li {
  background-color: var(--page-industry-news-regulatory-analysis-background-dark);
  color: var(--page-industry-news-regulatory-analysis-text-color-light);
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-industry-news-regulatory-analysis__list li h3 {
  font-size: 1.8em;
  color: var(--page-industry-news-regulatory-analysis-accent-color);
  margin-bottom: 10px;
}

.page-industry-news-regulatory-analysis__list li p {
  font-size: 1.05em;
  line-height: 1.7;
  color: var(--page-industry-news-regulatory-analysis-text-color-light);
}

.page-industry-news-regulatory-analysis__image--full-width {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-industry-news-regulatory-analysis__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-industry-news-regulatory-analysis__benefits-list li {
  background-color: var(--page-industry-news-regulatory-analysis-background-light);
  color: var(--page-industry-news-regulatory-analysis-text-color-dark);
  margin-bottom: 20px;
  padding: 30px;
  border-left: 5px solid var(--page-industry-news-regulatory-analysis-accent-color);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-industry-news-regulatory-analysis__benefits-list li strong {
  color: var(--page-industry-news-regulatory-analysis-primary-color);
  font-size: 1.2em;
  display: block;
  margin-bottom: 10px;
}

.page-industry-news-regulatory-analysis__cta-box {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-industry-news-regulatory-analysis__cta-box p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: var(--page-industry-news-regulatory-analysis-text-color-light);
}

.page-industry-news-regulatory-analysis__conclusion {
  padding: 80px 0;
  text-align: center;
  background-color: var(--page-industry-news-regulatory-analysis-background-light);
  color: var(--page-industry-news-regulatory-analysis-text-color-dark);
}

.page-industry-news-regulatory-analysis__conclusion-title {
  font-size: 3em;
  color: var(--page-industry-news-regulatory-analysis-primary-color);
  margin-bottom: 30px;
}

.page-industry-news-regulatory-analysis__conclusion p {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-industry-news-regulatory-analysis__cta-final {
  margin-top: 50px;
  background-color: var(--page-industry-news-regulatory-analysis-background-dark);
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  color: var(--page-industry-news-regulatory-analysis-text-color-light);
}

.page-industry-news-regulatory-analysis__cta-final p {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: var(--page-industry-news-regulatory-analysis-accent-color);
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-industry-news-regulatory-analysis__hero-title {
    font-size: 2.8em;
  }

  .page-industry-news-regulatory-analysis__hero-subtitle {
    font-size: 1.2em;
  }

  .page-industry-news-regulatory-analysis__section-title {
    font-size: 2.2em;
  }

  .page-industry-news-regulatory-analysis__content-block {
    flex-direction: column;
    text-align: center;
  }

  .page-industry-news-regulatory-analysis__content-block:nth-child(odd) {
    flex-direction: column; /* Reset for mobile */
  }

  .page-industry-news-regulatory-analysis__content-block img {
    max-width: 80%;
    margin: 20px auto !important; /* Center image */
  }

  .page-industry-news-regulatory-analysis__content-block p {
    padding: 0;
  }

  .page-industry-news-regulatory-analysis__grid-item img {
    height: 150px;
  }
}

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

  .page-industry-news-regulatory-analysis__hero-title {
    font-size: 2.2em;
  }

  .page-industry-news-regulatory-analysis__hero-subtitle {
    font-size: 1em;
  }

  .page-industry-news-regulatory-analysis__section {
    padding: 60px 0;
  }

  .page-industry-news-regulatory-analysis__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }

  .page-industry-news-regulatory-analysis__grid {
    gap: 30px;
  }

  .page-industry-news-regulatory-analysis__grid-item {
    padding: 25px;
  }

  .page-industry-news-regulatory-analysis__content-block h3 {
    font-size: 1.6em;
  }

  .page-industry-news-regulatory-analysis__list li,
  .page-industry-news-regulatory-analysis__benefits-list li {
    padding: 25px;
  }

  .page-industry-news-regulatory-analysis__list li h3 {
    font-size: 1.5em;
  }

  .page-industry-news-regulatory-analysis__cta-box {
    padding: 30px;
  }

  .page-industry-news-regulatory-analysis__cta-box p {
    font-size: 1.1em;
  }

  .page-industry-news-regulatory-analysis__conclusion-title {
    font-size: 2.5em;
  }

  .page-industry-news-regulatory-analysis__conclusion p {
    font-size: 1em;
  }

  .page-industry-news-regulatory-analysis__cta-final {
    padding: 40px;
  }

  .page-industry-news-regulatory-analysis__cta-final p {
    font-size: 1.3em;
  }
}

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

  .page-industry-news-regulatory-analysis__hero-subtitle {
    font-size: 0.9em;
  }

  .page-industry-news-regulatory-analysis__btn {
    padding: 12px 20px;
    font-size: 1em;
    margin: 5px;
  }

  .page-industry-news-regulatory-analysis__section-title {
    font-size: 1.5em;
  }

  .page-industry-news-regulatory-analysis p {
    font-size: 0.95em;
  }

  .page-industry-news-regulatory-analysis__grid {
    gap: 20px;
  }

  .page-industry-news-regulatory-analysis__grid-item {
    padding: 20px;
  }

  .page-industry-news-regulatory-analysis__grid-item h3 {
    font-size: 1.4em;
  }

  .page-industry-news-regulatory-analysis__content-block h3 {
    font-size: 1.4em;
  }

  .page-industry-news-regulatory-analysis__image--full-width {
    max-height: 250px;
  }

  .page-industry-news-regulatory-analysis__cta-box p {
    font-size: 1em;
  }

  .page-industry-news-regulatory-analysis__conclusion-title {
    font-size: 2em;
  }

  .page-industry-news-regulatory-analysis__cta-final p {
    font-size: 1.1em;
  }
}