.about-section {
  padding: 80px 20px;
  background-color: #f8f8f8;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-left {
  flex: 1;
}

.about-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.about-text {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.about-features li {
  font-size: 1rem;
  color: #555;
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.about-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f39c12;
  font-size: 1.2rem;
}

.about-btn {
  display: inline-block;
  background-color: #f39c12;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}

.about-btn:hover {
  background-color: #e67e22;
}

.about-right {
  flex: 1;
  text-align: center;
}

.about-image {
  max-width: 60%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-left {
    margin-bottom: 20px;
  }

  .about-right {
    margin-top: 20px;
  }
}




.experiences-section {
  padding: 80px 20px;
  background-color: #f8f8f8;
}

.experiences-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

.experiences-text {
  flex: 1;
}

.experiences-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.experiences-description {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

.experiences-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.experiences-list li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.experiences-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #f39c12;
  font-weight: bold;
}

.experiences-btn {
  display: inline-block;
  background-color: #f39c12;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.experiences-btn:hover {
  background-color: #e67e22;
}

.experiences-image {
  flex: 1;
}

.experiences-image img {
  width: 60%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .experiences-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .experiences-image {
    margin-bottom: 20px;
  }

  .experiences-btn {
    padding: 10px 20px;
  }
}
