main {
  display: flex;
  color: white;
  flex-direction: column;
  justify-content: center;
  min-height: 80vh;
  padding: 0 17.5%;
}

.about-section {
  display: flex;
  margin-top: 50px;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 60px 40px;
  gap: 80px;
}

.about-image {
  width: 340px;
  background-color: #555;
  flex-shrink: 0;
}

.about-flex {
  display: flex;
  margin-top: 55px;
}

.about-content {
  padding: 28px 70px;
  line-height: 21px;
  font-size: 15px;
  width: 785px;
}

.about-content h1{
  margin-bottom: 75px;
  font-size: 72px;
  font-weight: 400;
}

.about-text {
  margin-top: 3.5%;
  max-width: 625px;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  min-width: 400px;
  flex-grow: 1;
}

.about-text h1 {
  font-size: 65px;
  margin-bottom: 90px;
  font-weight: 400;
}

.about-text p {
  line-height: 1.6;
}


/* Mobile Responsive */
@media (max-width: 1200px) {
  .about-section {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px 20px;
  }
  
  .about-image {
    width: 100%;
    max-width: 360px;
    height: auto;
    aspect-ratio: 360/400;
  }
  
  .about-text {
    min-width: auto;
    max-width: 100%;
  }
  
  .about-text h1 {
    font-size: 48px;
    margin-bottom: 0px;
    text-align: center;
  }
    .about-flex{
    display: block !important;
  }
  .about-content{
    margin-top: 50px;
    padding: 0 !important;
    width: auto;
  }
}

@media (max-width: 768px) {
  main {
    padding: 0 5%;
  }
  
  .about-section {
    padding: 20px 10px;
    gap: 30px;
  }
  
  .about-text h1 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  
  .about-text {
    font-size: 14px;
  }
  .about-section{
    margin-top: 10px;
  }

  .about-content h1{
    font-size: 60px;
    margin-bottom: 50px;
    margin-top: 50px;
  }
}

.about-flex {
  display: flex;
  margin-top: 25px;
}


@media (max-width: 480px) {
  .about-text h1 {
    font-size: 25px;
    margin-bottom: 25px;
  }
  
  .about-section {
    padding: 15px 5px;
  }

  .about-flex {
  display: flex;
  margin-top: 25px;
}

.about-content h1{
  font-size: 60px;
}
}