/* style/industry-news-policy-updates.css */

/* Global Reset/Base Styles for this page only, within its scope */
.page-industry-news-policy-updates * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.page-industry-news-policy-updates {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #1A2E47; /* Dark text for contrast */
  background-color: #f8f9fa; /* Light background */
}

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

/* Hero Section */
.page-industry-news-policy-updates__hero-section {
  background: linear-gradient(135deg, #1A2E47 0%, #3a5073 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-industry-news-policy-updates__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.1), transparent 70%),
              radial-gradient(circle at bottom right, rgba(255, 215, 0, 0.1), transparent 70%);
  z-index: 0;
  animation: rotateBackground 20s linear infinite;
}

.page-industry-news-policy-updates__hero-section > * {
  position: relative;
  z-index: 1;
}

@keyframes rotateBackground {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.page-industry-news-policy-updates__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #FFD700; /* Gold for emphasis */
}

.page-industry-news-policy-updates__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

/* Buttons */
.page-industry-news-policy-updates__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
  margin: 10px;
}

.page-industry-news-policy-updates__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1A2E47; /* Dark blue text */
}

.page-industry-news-policy-updates__btn--primary:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-industry-news-policy-updates__btn--secondary {
  background-color: #1A2E47; /* Dark blue */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-industry-news-policy-updates__btn--secondary:hover {
  background-color: #0d1e33; /* Darker blue */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-industry-news-policy-updates__btn--tertiary {
  background-color: transparent;
  color: #1A2E47; /* Dark blue text */
  border: 2px solid #1A2E47;
}

.page-industry-news-policy-updates__btn--tertiary:hover {
  background-color: #1A2E47;
  color: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Content Section */
.page-industry-news-policy-updates__content-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-industry-news-policy-updates__section-title {
  font-size: 2.5em;
  color: #1A2E47;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.page-industry-news-policy-updates__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-industry-news-policy-updates__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333;
  text-align: justify;
}

.page-industry-news-policy-updates__highlight-text {
  color: #1A2E47;
  font-weight: 600;
}

.page-industry-news-policy-updates__list {
  list-style-type: disc;
  margin-left: 40px;
  margin-bottom: 30px;
  font-size: 1.1em;
  color: #333;
}

.page-industry-news-policy-updates__list li {
  margin-bottom: 10px;
}

.page-industry-news-policy-updates__image-full-width {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  margin: 40px 0;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-industry-news-policy-updates__image-content {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  margin: 40px 0;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Feature Grid */
.page-industry-news-policy-updates__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-industry-news-policy-updates__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #FFD700;
}

.page-industry-news-policy-updates__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-industry-news-policy-updates__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-industry-news-policy-updates__feature-title {
  font-size: 1.5em;
  color: #1A2E47;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-industry-news-policy-updates__feature-description {
  font-size: 1em;
  color: #555;
  line-height: 1.7;
}

.page-industry-news-policy-updates__cta-group {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

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

  .page-industry-news-policy-updates__hero-subtitle {
    font-size: 1.1em;
  }

  .page-industry-news-policy-updates__section-title {
    font-size: 2em;
  }

  .page-industry-news-policy-updates__paragraph,
  .page-industry-news-policy-updates__list {
    font-size: 1em;
  }
}

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

  .page-industry-news-policy-updates__hero-title {
    font-size: 2.2em;
  }

  .page-industry-news-policy-updates__hero-subtitle {
    font-size: 1em;
  }

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

  .page-industry-news-policy-updates__section-title {
    font-size: 1.8em;
  }

  .page-industry-news-policy-updates__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-industry-news-policy-updates__list {
    margin-left: 20px;
  }
}

@media (max-width: 480px) {
  .page-industry-news-policy-updates__hero-section {
    padding: 60px 0;
  }
  .page-industry-news-policy-updates__hero-title {
    font-size: 1.8em;
  }
  .page-industry-news-policy-updates__hero-subtitle {
    font-size: 0.9em;
  }
  .page-industry-news-policy-updates__btn {
    display: block;
    margin: 10px auto;
  }
  .page-industry-news-policy-updates__section-title {
    font-size: 1.5em;
  }
  .page-industry-news-policy-updates__feature-item {
    padding: 20px;
  }
}