  /* Custom Styles */
  .navbar {
    background: #2c3e50; /* Custom menu background color */
  }
  .navbar .nav-link {
    color: #ecf0f1; /* Menu link text color */
    transition: color 0.3s ease;
  }
  .navbar .nav-link:hover {
    color: #ff7e5f; /* Hover color for menu links */
  }
  .hero {
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    color: white;
    text-align: center;
    padding: 80px 20px;
  }
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  .hero p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .download-btn {
    background: #ff7e5f;
    color: white;
    padding: 12px 25px;
    font-size: 18px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  .download-btn:hover {
    background: #feb47b;
  }
  section {
    padding: 60px 20px;
  }
  .footer {
    background: #0b2e46; /* Updated footer background */
    color: white;
    padding: 10px 20px;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-menu li {
    display: inline;
  }
  .footer-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
  }
  .footer-menu a:hover {
    color: #ff7e5f;
  }
  .disclaimer-content {
    margin-bottom: 30px;
  }
  .contact-info {
    background-color: #f4f4f4;
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
  }
  .contact-info h3 {
    margin-bottom: 15px;
  }
  
  /* Responsiveness */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2rem;
    }
    .hero p {
      font-size: 1rem;
    }
    .download-btn {
      padding: 10px 20px;
      font-size: 16px;
    }
    .footer-menu {
      justify-content: space-between;
    }
  }