
* 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7fa;
    color: #333;
    line-height: 1.6;
  }
  
  /* Header */
  .header {
    background-color: #02d2d9;
    color: #fff;
    padding: 30px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .header h1 {
    font-size: 2.5rem;
  }
  
  .header p {
    font-size: 1.1rem;
    margin-top: 10px;
  }
  
  /* Hero Section */
  .hero {
    text-align: center;
    padding: 50px 20px;
    background: #bcf7f7;
  }
  
  .hero img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  .button {
    display: inline-block;
    background-color: #02d2d9;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s ease;
  }
  
  .button:hover {
    background-color: #02d2d9;
  }
  
  /* Main Content */
  .main-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Sections */
  .section {
    margin: 50px 0;
  }
  
  .section h2 {
    font-size: 2rem;
    color: #02d2d9;
    margin-bottom: 20px;
  }
  
  .section p {
    font-size: 1rem;
    color: #555;
  }
  
  /* Fun Facts */
  .fun-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .fun-fact {
    background-color: #7bf6fa;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    flex: 1 1 calc(50% - 10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    color: #333;
  }
  
  /* Gallery */
  .gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .gallery img {
    width: calc(33.333% - 10px);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .gallery img:hover {
    transform: scale(1.05);
  }
  
  /* Quiz */
  .quiz {
    background-color: #bcf7f7;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .quiz-question {
    background-color: #7bf6fa;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    flex: 1 1 calc(50% - 10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    color: #333;
  }
  
  /* Contact Form */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  .contact-form button {
    background-color: #02d2d9;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #21867a;
  }
  
  /* Footer */
  .footer {
    background-color: #02d2d9;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
  }

  /* Responsive Styles for Mobile */
@media (max-width: 768px) {
    /* General Adjustments */
    body {
      font-size: 0.9rem;
    }
    
    .header h1 {
      font-size: 1.8rem;
    }
  
    .header p {
      font-size: 1rem;
    }
  
    .hero img {
      width: 90%;
      max-width: 100%;
    }
  
    /* Main Content Adjustments */
    .main-content {
      padding: 15px;
    }
  
    /* Section Titles */
    .section h2 {
      font-size: 1.5rem;
    }
  
    /* Fun Facts */
    .fun-facts {
      flex-direction: column;
    }
  
    .fun-fact {
      flex: 1 1 100%;
    }
  
    /* Gallery */
    .gallery {
      flex-direction: column;
      gap: 10px;
      align-items: center;
    }
  
    .gallery img {
      width: 60%;
    }
  
    /* Quiz */
    .quiz {
      flex-direction: column;
    }
  
    .quiz-question {
      flex: 1 1 100%;
    }
  
    /* Contact Form */
    .contact-form input,
    .contact-form textarea {
      font-size: 1rem;
      padding: 10px;
    }
  
    .contact-form button {
      padding: 12px;
      font-size: 1rem;
    }
  }
  
  /* Extra Small Devices (max-width: 480px) */
  @media (max-width: 480px) {
    .header h1 {
      font-size: 1.5rem;
    }
  
    .hero {
      padding: 20px;
    }
  
    .button {
      font-size: 0.9rem;
      padding: 8px 16px;
    }
  
    .section h2 {
      font-size: 1.3rem;
    }
  
    .footer {
      font-size: 0.8rem;
    }
  }
  