body {
    margin: 0;
    font-family: "Poppins", system-ui !important;
    background: white;
    color: #333;
    scroll-behavior: smooth;
  }
  
  header {
    background: #1f87b2;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  img {
    object-fit: contain;
    height: 300px;
    width: 100%; /* Make images responsive */
    max-width: 100%;
  }
  
  header h1 {
    font-size: 2.5rem;
    margin: 0;
    animation: slideIn 1s ease-out forwards;
  }
  
  header p {
    font-size: 1rem;
    margin: 0.5rem 0;
  }
  
  main {
    margin: 0 auto;
    max-width: 900px;
    padding: 1.5rem;
  }
  
  .content-section {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease-out forwards;
  }
  
  .content-section h2 {
    font-size: 1.8rem;
    color: #1f87b2;
    margin-bottom: 1rem;
    font-family: "Poppins", system-ui !important;
  }
  
  .content-section p,
  .content-section ul,
  .content-section ol {
    font-size: 1rem;
    line-height: 1.8;
    font-family: "Poppins", system-ui !important;
  }
  
  @keyframes slideIn {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes fadeInUp {
    from {
      transform: translateY(40px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .requirements-section {
    margin-top: 20px;
  }
  
  .requirements-header {
    font-weight: bold;
    font-size: 1.5rem;
    color: #1f87b2;
    margin-bottom: 10px;
  }
  
  .requirements-list {
    list-style-type: disc;
    padding-left: 40px;
    font-size: 1rem;
    color: #333;
  }
  
  .requirements-list li {
    padding: 2px 0;
  }
  
  .side-by-side {
    display: flex;
    justify-content: space-around;
    gap: 10px;
  }
  
  .side-by-side img {
    max-width: 30%;
    height: auto;
  }
  
  /* Media Queries for responsiveness */
  @media only screen and (max-width: 768px) {
    header h1 {
      font-size: 2rem;
    }
  
    header p {
      font-size: 1rem;
    }
  
    main {
      padding: 1rem 2rem; /* Add padding on left and right */
    }
  
    .content-section h2 {
      font-size: 1.5rem;
    }
  
    img {
      height: auto; /* Adjust image height for smaller screens */
    }
  
    .side-by-side {
      flex-direction: column; /* Stack images vertically on smaller screens */
    }
  
    .side-by-side img {
      max-width: 100%; /* Full width for images on smaller screens */
    }
  
    .requirements-header {
      font-size: 1.2rem;
    }
  
    .requirements-list {
      padding-left: 20px; /* Reduce padding for smaller screens */
    }
  
    .requirements-list li {
      padding: 5px 0;
    }
  }
  
  @media only screen and (max-width: 480px) {
    header h1 {
      font-size: 1.8rem;
    }
  
    header p {
      font-size: 0.9rem;
    }
    .content-section ol {
      font-size: 14px;
    }
    
    main {
      padding: 0.5rem 2rem; /* Add padding on left and right for smaller screens */
    }
  
    .content-section h2 {
      font-size: 1.3rem;
    }
  
    .requirements-header {
      font-size: 1rem;
    }
  
    .requirements-list {
      padding-left: 15px;
    }
  
    .side-by-side img {
      max-width: 100%;
      height: auto;
    }
  }
