
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f8f8;
  
  }
  
  h2 {
    text-align: center;
    color: #ff8a00;
    font-size: 2.5rem;
   
  }
  
  h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
  }
  
 
  .about-content {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 20px;
    flex-wrap: wrap; 
  }
  
  .about-content .text {
    flex: 1;
    font-size: 1.1rem;
    color: #666;
    padding: 0 20px;
    padding-top: 100px;
    
  }
  
  .about-content .owner-info {
    flex: 1;
    padding: 20px;
    border-left: 3px solid #ff8a00;
    text-align: center;
    padding-top: 0;
  }
  header{
    border-bottom: 2px solid black;
}
  
  .about-content img {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-left: 0; 
  }
  
  .owner-info p {
    margin-top: 20px;
  }
  /* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  margin-top:10 ;
}
.nav{
  display: flex;
  align-items: flex-end;
  margin-bottom: 10px;
  margin-right: 10px;
  margin-top: 10px;

}
.hamburger .line {
  width: 35px;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;

}
.hamburger.active span:nth-child(1){
  position: absolute;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2){
  opacity: 0;
}
.hamburger.active span:nth-child(3){
  position: absolute;
  transform: rotate(-45deg);
}
.off-screen-menu{
  background-color: rgba(200, 231, 231, 0.707);
  height: 100vh;
  width: 100%;
  max-width:450px;
  position: fixed;
  top: 0;
  gap: 10px;
  right: -450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 2rem;
  transition: 0.3s ease;
}
.off-screen-menu a{
  text-decoration: none;
  list-style: none;
  color: black;
  font-weight: 500;
}
.off-screen-menu ul li{
  list-style: none;
}
.off-screen-menu.active{
  right: 0;
}

  

  @media screen and (max-width: 768px) {
    #about-hero h1 {
      font-size: 2.5rem;
    }
    .hamburger{
      display: flex;
    }
  
    #about-hero p {
      font-size: 1rem;
      margin-top: 5px;
    }
  
    .about-content {
      flex-direction: column;
      align-items: center;
      gap: 40px;
      padding: 20px; 
    }
  
    .about-content .owner-info {
      border-left: none;
      text-align: center;
    }
  
    .about-content img {
      max-width: 250px;
      margin-left: 0;
    }
  
    .about-content .text {
      text-align: center;
      padding: 0 10px;
    }
  }
  
  @media screen and (max-width: 480px) {
    #about-hero h1 {
      font-size: 2rem;
    }
  
    #about-hero p {
      font-size: 0.9rem;
      margin-top: 5px;
    }
  
    .about-content {
      padding: 10px;
    }
  
    .about-content .text {
      font-size: 1rem;
      padding: 0 10px; 
    }
  
    .about-content img {
      max-width: 220px;
      margin-left: 0;
    }
  
    .about-content .owner-info {
      text-align: center; 
      margin-top: 20px; 
    }
  
    .owner-info h3 {
      font-size: 1.5rem;
    }
  
    .owner-info p {
      font-size: 1rem;
    }
  }
  