/* style/industry-news-regulatory-updates.css */
.page-industry-news-regulatory-updates {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.page-industry-news-regulatory-updates .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-industry-news-regulatory-updates .hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #3a4a7a 100%); /* Dark blue gradient */
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.page-industry-news-regulatory-updates .hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #E3B505; /* Golden for title */
}

.page-industry-news-regulatory-updates .hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-industry-news-regulatory-updates .hero-cta .btn {
  margin: 0 10px;
}

.page-industry-news-regulatory-updates .section-title {
  font-size: 2.2em;
  color: #0A2463; /* Dark blue for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-industry-news-regulatory-updates .section-subtitle {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  margin-bottom: 50px;
}

.page-industry-news-regulatory-updates .content-section {
  padding: 80px 0;
}

.page-industry-news-regulatory-updates .intro-section {
  background-color: #f8f8f8;
}

.page-industry-news-regulatory-updates .global-trends-section {
  background-color: #0A2463;
}

.page-industry-news-regulatory-updates .global-trends-section .section-title,
.page-industry-news-regulatory-updates .global-trends-section .section-subtitle {
  color: #E3B505;
}

.page-industry-news-regulatory-updates .compliance-commitment-section {
  background-color: #0A2463;
}

.page-industry-news-regulatory-updates .compliance-commitment-section .section-title,
.page-industry-news-regulatory-updates .compliance-commitment-section .section-subtitle {
  color: #E3B505;
}

.page-industry-news-regulatory-updates .content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.page-industry-news-regulatory-updates .content-grid.reverse-grid {
  flex-direction: row-reverse;
}

.page-industry-news-regulatory-updates .content-grid .text-content,
.page-industry-news-regulatory-updates .content-grid .image-content {
  flex: 1;
}

.page-industry-news-regulatory-updates .content-grid .text-content p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444;
}

.page-industry-news-regulatory-updates .global-trends-section .text-content p,
.page-industry-news-regulatory-updates .compliance-commitment-section .text-content p {
  color: #e0e0e0;
}

.page-industry-news-regulatory-updates .global-trends-section .text-content ul,
.page-industry-news-regulatory-updates .compliance-commitment-section .text-content ul {
  color: #e0e0e0;
  list-style: disc inside;
  margin-bottom: 15px;
}

.page-industry-news-regulatory-updates .global-trends-section .text-content ul li,
.page-industry-news-regulatory-updates .compliance-commitment-section .text-content ul li {
  margin-bottom: 5px;
}

.page-industry-news-regulatory-updates .content-grid .image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-industry-news-regulatory-updates .card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-industry-news-regulatory-updates .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-industry-news-regulatory-updates .card-img {
  max-width: 100px;
  margin-bottom: 20px;
  height: auto;
}

.page-industry-news-regulatory-updates .card-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-industry-news-regulatory-updates .card-text {
  color: #666;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-industry-news-regulatory-updates .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1em;
}

.page-industry-news-regulatory-updates .btn-primary {
  background-color: #E3B505; /* Golden */
  color: #0A2463; /* Dark blue text */
  border: 1px solid #E3B505;
}

.page-industry-news-regulatory-updates .btn-primary:hover {
  background-color: #d4a704;
  color: #0A2463;
}

.page-industry-news-regulatory-updates .btn-secondary {
  background-color: transparent;
  color: #E3B505; /* Golden text */
  border: 1px solid #E3B505;
}

.page-industry-news-regulatory-updates .btn-secondary:hover {
  background-color: #E3B505;
  color: #0A2463;
}

.page-industry-news-regulatory-updates .btn-link {
  color: #0A2463;
  text-decoration: underline;
  padding: 0;
  border: none;
  background: none;
}

.page-industry-news-regulatory-updates .btn-link:hover {
  color: #E3B505;
  text-decoration: none;
}

.page-industry-news-regulatory-updates .cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #E3B505; /* Golden background */
  color: #0A2463; /* Dark blue text */
}

.page-industry-news-regulatory-updates .cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #0A2463;
}

.page-industry-news-regulatory-updates .cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #0A2463;
}

.page-industry-news-regulatory-updates .cta-buttons .btn {
  margin: 0 15px;
}

.page-industry-news-regulatory-updates .bg-dark-blue {
  background-color: #0A2463;
}

.page-industry-news-regulatory-updates .bg-dark-blue .section-title,
.page-industry-news-regulatory-updates .bg-dark-blue .section-subtitle {
  color: #E3B505;
}

.page-industry-news-regulatory-updates .bg-dark-blue .text-content p,
.page-industry-news-regulatory-updates .bg-dark-blue .text-content li {
  color: #e0e0e0;
}

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

  .page-industry-news-regulatory-updates .section-title {
    font-size: 1.8em;
  }

  .page-industry-news-regulatory-updates .content-grid {
    flex-direction: column;
  }

  .page-industry-news-regulatory-updates .content-grid.reverse-grid {
    flex-direction: column-reverse;
  }
}

@media (max-width: 768px) {
  .page-industry-news-regulatory-updates .hero-section,
  .page-industry-news-regulatory-updates .content-section,
  .page-industry-news-regulatory-updates .cta-section {
    padding: 60px 0;
  }

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

  .page-industry-news-regulatory-updates .hero-description {
    font-size: 1em;
  }

  .page-industry-news-regulatory-updates .section-title {
    font-size: 1.6em;
  }

  .page-industry-news-regulatory-updates .card-grid {
    grid-template-columns: 1fr;
  }

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

  .page-industry-news-regulatory-updates .cta-description {
    font-size: 1em;
  }

  .page-industry-news-regulatory-updates .cta-buttons .btn {
    display: block;
    margin: 15px auto;
  }
}

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

  .page-industry-news-regulatory-updates .hero-cta .btn {
    display: block;
    margin: 10px auto;
  }
}