header{
        margin-bottom: 20px;
    }
    .heading {
      text-align: center;
      color: rgb(0, 0, 0);
      border-radius: 20px;
      padding: 1rem 0;
      font-size: 1.6rem;
      font-weight: 900;
    }
    .inner-body {
  background-color: white;
  border-radius: 30px;
  padding: 30px 20px;
  margin: 20px 40px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}
    #news-container {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 20px;
      margin-top: 30px;
    }
    @media (max-width: 768px) {
      #news-container {
        padding: 15px;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }
    }
    .news-card {
      background: rgb(252, 252, 252);
      border-radius: 12px;
      box-shadow: 0 0 8px rgba(0,0,0,0.7);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.2s ease;
    }
    .news-card:hover {
      transform: translateY(-5px);
    }
    .news-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .news-content {
      padding: 16px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .news-title {
      font-size: 1.1rem;
      margin: 0 0 12px;
      color: #1e40af;
      text-decoration: none;
    }
    .news-desc {
      flex: 1;
      font-size: 14px;
      color: #4b5563;
      margin-bottom: 12px;
    }
    .news-link {
      align-self: flex-start;
      margin-top: auto;
      color: #000000;
      background-color: #f1bd00;
      padding: 10px;
      border-radius: 20px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.95rem;
    }
    .error {
      text-align: center;
      color: red;
      margin-top: 2rem;
    }
    @media (max-width: 768px) {
  .inner-body {
    margin-left: 0;
    margin-right: 0;
  }
}