/* ========== Post Hero Section ========== */
.post-hero {
  background: linear-gradient(to right, #003366cc, #005fa3cc);
  color: #fff;
  text-align: center;
  padding: 80px 20px 60px;
  margin-top: 2rem;
}
.post-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.post-hero p {
  font-size: 1.125rem;
}

/* ========== Post Content ========== */
.post-content {
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #333;
}
.post-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.post-content p {
  margin-bottom: 1rem;
}

/* ========== Notification Overview (New) ========== */
.notification-overview {
  display: flex;
  gap: 20px; 
  margin-bottom: 2rem;
  flex-wrap: wrap;
  align-items: stretch; /* Align both columns to same height if possible */
}

.notification-overview ul {
  list-style: none;
  padding: 40px 10px;
  margin: 0;
  flex: 1 1 350px; /* Allow growing on larger screens */
}

.notification-overview li {
  margin-bottom: 16px; /* Increased vertical spacing */
  font-size: 1.125rem; /* Slightly larger font */
  line-height: 2.5;
}

.notification-image {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin-right: 3rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  flex-shrink: 0; /* Prevent shrinking on narrow screens */
}

/* ========== Table ========== */
.post-content table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin: 30px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.post-content th,
.post-content td {
  padding: 12px 16px;
  border: 1px solid #ddd;
  text-align: center;
}
.post-content thead {
  background-color: #e6f2ff;
  color: #003366;
  font-weight: 600;
}
.post-content tbody tr:hover {
  background-color: #f9f9f9;
}
.post-content td:last-child {
  font-weight: bold;
}

/* ========== FAQ Section ========== */
.faq-block {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 2px solid #e0e0e0;
}
.faq-block h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #003366;
}
.faq-block .faq-item {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #f9fbff;
  border-left: 4px solid #007acc;
  border-radius: 6px;
  transition: background 0.3s ease;
}
.faq-block .faq-item:hover {
  background-color: #f0f7ff;
}
.faq-block .faq-item strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #002b5c;
}
.faq-block .faq-item p {
  margin: 0;
  color: #333;
  line-height: 1.6;
  text-align: left;
}

/* ========== CTA Section ========== */
.cta-section {
  background: #f5faff;
  text-align: center;
  padding: 40px 20px 0px;
}
.cta-section h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: #003366;
}
.cta-section p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}
.cta-section a {
  background: #007acc;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}
.cta-section a:hover {
  background: #005fa3;
}

/* ========== Responsive Adjustments ========== */
@media (max-width: 768px) {
  .post-hero h1 {
    font-size: 1.6rem;
  }
  .cta-section h2 {
    font-size: 1.4rem;
  }
  .notification-overview {
    flex-direction: column;
  }
  .notification-image {
    max-width: 100%;
  }
  .post-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .faq-block h2 {
    font-size: 1.25rem;
  }
  .faq-block .faq-item {
    padding: 16px;
  }
  .faq-block .faq-item strong {
    font-size: 1rem;
  }
}
