
.about-section {
  padding: 80px 20px;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.about-image-wrapper {
  position: relative;
  flex: 1 1 400px;
  max-width: 500px;
}

.about-main-image {
  width: 100%;
  border-radius: 20px;
}


.about-text-content {
  flex: 1 1 500px;
}

.about-label {
  background: #222526;
  color: #fff;
  display: inline-block;
  padding: 8px 20px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 10px;
  font-size: 14px;
}

.about-text-content h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text-content p {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 0 16px;
    gap: 20px;
  }

  .about-text-content {
    width: 100%;
  }

  .about-text-content h1 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 16px;
  }

  .about-text-content p {
    font-size: 15px;
    line-height: 1.6;
  }

  .about-image-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
  }

  .about-main-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
  }

  .about-experience-box {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #000;
    color: #fff;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    width: 100px;
  }

  .about-experience-box h2 {
    font-size: 28px;
    margin: 0;
  }

  .about-experience-box p {
    font-size: 13px;
    margin: 0;
  }

  .whatsapp-button {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 24px auto 0;
    text-align: center;
    background-color: #25D366;
    color: white;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
  }
}
