/* style/latest-news-regulatory-updates.css */
.page-latest-news-regulatory-updates {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark gray for readability on light backgrounds */
  line-height: 1.6;
}

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

/* Hero Section */
.page-latest-news-regulatory-updates__hero {
  background: linear-gradient(135deg, #003366, #004488); /* Dark blue gradient */
  color: #FFFFFF; /* White text for contrast */
  padding: 100px 0;
  text-align: center;
}

.page-latest-news-regulatory-updates__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold for emphasis */
  font-weight: bold;
}

.page-latest-news-regulatory-updates__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-latest-news-regulatory-updates__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.page-latest-news-regulatory-updates__btn--primary {
  background-color: #FFCC00; /* Gold */
  color: #003366; /* Dark blue text on gold */
  border: 2px solid #FFCC00;
}

.page-latest-news-regulatory-updates__btn--primary:hover {
  background-color: #e6b800; /* Slightly darker gold */
  transform: translateY(-2px);
}

.page-latest-news-regulatory-updates__btn--secondary {
  background-color: transparent;
  color: #FFCC00; /* Gold text */
  border: 2px solid #FFCC00;
}

.page-latest-news-regulatory-updates__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-2px);
}

/* General Section Styling */
.page-latest-news-regulatory-updates__section {
  padding: 60px 0;
  background-color: #f8f8f8; /* Light gray background for sections */
}

.page-latest-news-regulatory-updates__section:nth-of-type(even) {
  background-color: #ffffff; /* White background for alternating sections */
}

.page-latest-news-regulatory-updates__section-title {
  font-size: 2.5em;
  color: #003366; /* Dark blue for main titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-latest-news-regulatory-updates__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Gold underline */
  border-radius: 2px;
}

.page-latest-news-regulatory-updates__section--intro p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

/* Image Styling */
.page-latest-news-regulatory-updates__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-latest-news-regulatory-updates__image--large {
  width: 90%;
}

.page-latest-news-regulatory-updates__image--medium {
  width: 70%;
}

/* Grid Layout */
.page-latest-news-regulatory-updates__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-latest-news-regulatory-updates__grid-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-latest-news-regulatory-updates__grid-item:hover {
  transform: translateY(-5px);
}

.page-latest-news-regulatory-updates__grid-title {
  font-size: 1.5em;
  color: #003366; /* Dark blue */
  margin-bottom: 15px;
}

.page-latest-news-regulatory-updates__grid-item p {
  color: #555555;
  font-size: 1em;
}

.page-latest-news-regulatory-updates__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

/* List Styling */
.page-latest-news-regulatory-updates__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-latest-news-regulatory-updates__list li {
  background-color: #e6f0f9; /* Light blue background for list items */
  margin-bottom: 15px;
  padding: 15px 25px;
  border-radius: 8px;
  border-left: 5px solid #FFCC00; /* Gold accent */
  font-size: 1.1em;
  color: #003366; /* Dark blue text */
}

.page-latest-news-regulatory-updates__list li strong {
  color: #002244; /* Even darker blue for strong text */
}

/* FAQ Section */
.page-latest-news-regulatory-updates__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-latest-news-regulatory-updates__faq-question {
  font-size: 1.3em;
  color: #003366; /* Dark blue */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-latest-news-regulatory-updates__faq-answer {
  font-size: 1em;
  color: #555555;
}

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

  .page-latest-news-regulatory-updates__hero-subtitle {
    font-size: 1.2em;
  }

  .page-latest-news-regulatory-updates__section-title {
    font-size: 2em;
  }

  .page-latest-news-regulatory-updates__grid {
    grid-template-columns: 1fr;
  }

  .page-latest-news-regulatory-updates__image--large,
  .page-latest-news-regulatory-updates__image--medium {
    width: 100%;
  }

  .page-latest-news-regulatory-updates__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-latest-news-regulatory-updates__list li,
  .page-latest-news-regulatory-updates__faq-question,
  .page-latest-news-regulatory-updates__faq-answer {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-latest-news-regulatory-updates__hero-title {
    font-size: 2em;
  }

  .page-latest-news-regulatory-updates__hero-subtitle {
    font-size: 1em;
  }

  .page-latest-news-regulatory-updates__section-title {
    font-size: 1.8em;
  }

  .page-latest-news-regulatory-updates__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}