.hero {
    text-align: center;
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    color: white;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
  }
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }
  .hero p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
  .latest-news {
    margin-bottom: 3rem;
  }
  .news-list {
    display: grid;
    gap: 1.5rem;
  }
  .news-item {
    background: #222;
    border-radius: 10px;
    padding: 1rem;
    transition: background-color 0.3s ease;
    cursor: pointer;
  }
  .news-item:hover {
    background-color: #333;
  }
  .news-item h3 {
    margin-bottom: 0.5rem;
    color: #4db8ff;
  }
  .quick-links {
    text-align: center;
  }
  .links-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
  }
  .quick-link {
    background: #333;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    color: #4db8ff;
    transition: background-color 0.3s ease;
  }
  .quick-link:hover {
    background-color: #4db8ff;
    color: #121212;
  }
  