/* About Section Styles */
.about-section {
  background-color: var(--accent-blush);
  padding: 80px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

/* Background circles removed as requested */

.about-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-content {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}

.about-feature {
  flex: 1 0 50%;
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  min-width: 250px;
}

.feature-icon {
  background-color: white;
  color: var(--accent-blush);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 18px;
}

.feature-text {
  font-size: 1rem;
}

.feature-text strong {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
  }
  
  .about-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .about-image {
    order: -1;
    margin-bottom: 30px;
  }
}
