/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Navbar Styles */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #4CAF50;
    color: white;
  }
  
  .logo a {
    font-size: 24px;
    font-weight: bold;
    color: white;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
  }
  
  .nav-links li {
    display: inline;
  }
  
  .nav-links a {
    color: white;
    font-size: 16px;
    padding: 5px 10px;
  }
  
  .nav-links a:hover {
    background-color: white;
    color: #4CAF50;
    border-radius: 5px;
  }
  
  /* Hero Section */
  .hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background: url('https://viterbischool.usc.edu/wp-content/uploads/2021/05/pexels-anna-shvets-1200x600-1.jpeg') no-repeat center center/cover;
    color: white;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
  }
  
  .hero-content p {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .hero-content .btn {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .hero-content .btn:hover {
    background-color: white;
    color: #4CAF50;
  }
  
  /* Categories Section */
  .categories {
    padding: 50px 20px;
    text-align: center;
    background-color: #f9f9f9;
  }
  
  .categories h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
  }
  
  .category-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .category-card {
    width: 200px;
    background: white;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .category-card img {
    width: 100%;
    border-radius: 10px;
  }
  
  .category-card h3 {
    margin-top: 10px;
    font-size: 18px;
    color: #4CAF50;
  }
  
  /* Footer Section */
  footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
  }
  
  .footer-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .footer-content p {
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .social-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .social-links a {
    color: white;
    font-size: 16px;
  }
  
  .social-links a:hover {
    text-decoration: underline;
  }
/* Cover Section */
.cover {
    position: relative;
    height: 80vh;
    background: url(https://www.google.com/url?sa=i&url=https%3A%2F%2Fwww.diabetes.co.uk%2Fnews%2F2023%2Fjun%2Fcall-for-ultra-processed-food-packaging-to-feature-warnings-similar-to-cigarettes.html&psig=AOvVaw3axv0VwtqwS7r8OkmBjHwD&ust=1736537627605000&source=images&cd=vfe&opi=89978449&ved=0CBQQjRxqFwoTCNDD07Wy6YoDFQAAAAAdAAAAABAJ) no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
  }
  
  .cover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for text visibility */
  }
  
  .cover-content {
    position: relative;
    z-index: 1;
  }
  
  .cover-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
  }
  
  .cover-content p {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .cover-content .btn {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
  }
  
  .cover-content .btn:hover {
    background-color: white;
    color: #4CAF50;
  }
    