/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    padding: 20px;
  }
  
  .site-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .site-header h1 {
    font-size: 2rem;
    color: #007BFF;
  }
  
  .site-header p {
    font-size: 1.2rem;
    color: #555;
  }
  
  .content {
    max-width: 80%;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1600de;
  }
  
  h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  p {
    margin-bottom: 1rem;
  }
  a{
    color: rgb(64, 64, 64);
    text-decoration: none;
  }
  
  
  ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 1rem;
  }
  h4:nth-child(odd) {
    color: rgb(232, 87, 87); /* First color */
  }
  .site-footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #666;
  }
  .image-section{
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    margin: 2vw 0 2vw;
    box-shadow: 4px -2px 4px 2px rgba(0, 0, 0, 0.1);
    height: 70vh;
    background-position: center;
  }
  .image-section img {
    width: 100%;
    height: 100%;
  }


@media (max-width:480px) {
  .content{
    max-width: 100%;
  }
  .site-header h1{
    font-size: 1.2rem;
  }
  .site-header p{
    font-size: .8rem;
  }
  h2{
    font-size: 1.1rem;
  }
  p{
    font-size: .7rem;
  }
  h3{
    font-size: .99rem;
  }
  h4{
    font-size: .8rem;
  }

  .image-section {
    height: 40vh;
    width: 100%;
    border-radius: 1px;
    margin: 4vw 0 4vw;
  }
  li{
    font-size: .8rem;
  }
}