/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Header */
  .header {
    background: linear-gradient(135deg, #0078d7, #004a8f);
    color: #fff;
    padding: 60px 0;
    text-align: center;
  }
  
  .header h1 {
    margin: 0;
    font-size: 3rem;
    font-weight: 700;
  }
  
  .header p {
    margin: 10px 0 0;
    font-size: 1.2rem;
    font-weight: 300;
  }
  
  /* Navigation */
  .navbar {
    background: #333;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .navbar ul li {
    margin: 0;
  }
  
  .navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .navbar ul li a:hover {
    color: #0078d7;
  }
  
  /* Sections */
  .section {
    padding: 80px 0;
  }
  
  .section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  /* Updates List */
  .updates-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .update-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .update-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  .update-card h3 {
    margin-top: 0;
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  .update-card .date {
    font-size: 0.9rem;
    color: #777;
    margin: 10px 0;
  }
  
  .update-card .description {
    font-size: 1rem;
    color: #555;
  }
  
  /* Footer */
  .footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 80px;
  }
  
  .footer p {
    margin: 5px 0;
    font-size: 0.9rem;
  }
  
  .footer strong {
    color: #0078d7;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .header h1 {
      font-size: 2.5rem;
    }
  
    .section h2 {
      font-size: 2rem;
    }
  
    .update-card {
      padding: 15px;
    }
  }

  .links-container {
    margin-top: 20px;
  }
  
  .update-link {
    display: block;
    padding: 10px;
    margin: 5px 0;
    background-color: #002fff48;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .update-link:hover {
    background-color: #2215ce42;
  }
  
  .section {
    margin-bottom: 40px;
  }