body {
   font-family: Arial, sans-serif;
   background-color: #f4f4f4;
   color: #000000;
   margin: 0;
   padding: 0;
}

.container {
max-width: 80%;
margin: 20px auto;
background-color: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.HeaderLogo{
float: left;
margin: 25px;
}

h1 {
text-align: center;
color: #ec2028;
font-size: 24px;
}

h2 {
color: rgb(255, 255, 255)fff;
padding-top: 10px;
text-align: center;
}

p {
text-align:left;
line-height: 1.5;
margin: 25px;
}

.button-container {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
margin-top: 20px;
}

.button {
background-color: #f4f4f4;
color: #000000;
text-align: center;
padding: 15px;
margin: 10px;
width: 45%;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}

.button:hover {
background-color: #870001;
color: #ffffff;
}

a{
text-decoration: none;
color: #000000;
}

a:hover{
text-decoration: none;
color: #fff;
}

.img{
   height: auto;
   display: block;
   margin-left: auto;
   margin-right: auto;
}

.back-arrow {
   width: 30px;
   height: 30px;
   display: flex;
   align-items: center;
   justify-content: center;
   background-color: #a30001;
   color: rgb(255, 255, 255);
   font-size: 20px;
   border-radius: 50%;
   cursor: pointer;
}

.back-arrow a{
   color: #fff;
}

.sec1{
   width: 50%;
   float: left;
   margin-top: 25px;
}

.img-container {
   height: auto;
   display: flex;
   align-items: center;
   justify-content: center
}

.do-dont-img {
   max-width: 100%
}
.do-dont {
   flex-basis: 15%
}
.text {
   font-size: 20px;
   padding-left: 5px;
}

.footer-text{
line-height: 1.6;
text-align: center;
}

.footer-text a{
color: #000000;
}

     /* Media Queries for Mobile Responsiveness */
     @media only screen and (max-width: 768px) {
      .container {
          max-width: 70%;
      }

      .img{
         width: 60%;
         height: auto;
         display: block;
         margin-left: auto;
         margin-right: auto;
      }

      .sec1{
         width: 100%;
         }

      .button {
          width: 100%;
          padding: 15px;
          font-size: 16px;
      }

      .img-container {
          display:block;
          align-items: center;
          justify-content: center
       }
  }

  @media only screen and (max-width: 480px) {

      .container {
          max-width: 70%;
      }

      .img{
         width: 60%;
         height: auto;
         display: block;
         margin-left: auto;
         margin-right: auto;
      }

      .sec1{
      width: 100%;
      }

      h1 {
          font-size: 20px;
      }

      .button {
          padding: 15px;
          font-size: 16px;
      }
  }