.about {
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 60px;
    margin: 60px auto;
    max-width: 1000px;
    border-radius: 16px;
  }
  
  .about-image img {
    width: 280px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }
  
  .about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .about-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: white;
  }
  
  .about-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: white;
  }
  