/* === REFINED ABOUT SECTION (Raised Style) === */
.about-section {
  background: #ffffff;

  border-radius: var(--radius);
  border: 2px solid #ffffff;
  border-bottom: 4px solid #e5e5e5;

  margin: 40px auto 20px;
  text-align: center;
  max-width: 780px;
  padding: 40px 32px;
  box-sizing: border-box;

  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-heading {
  font-family: 'Inter', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}


/* === Icon (Raised, new system) === */
.section-icon {
  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff !important;
  border-radius: 12px;

  border: 2px solid #f0f0f0 !important;
  border-bottom: 4px solid #cfaa6e !important;

  margin-bottom: 8px;
}

.about-icon i {
  color: #cfaa6e;
  font-size: 18px;
}


/* Text */
.about-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}


/* Animation states */
.testimonial-text {
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-out-left {
  opacity: 0;
  transform: translateX(-30px);
}

.fade-in-right {
  opacity: 1;
  transform: translateX(0);
}


/* Responsive tweaks */
@media (max-width: 768px) {
  .about-section {
    width: 92%;
    padding: 30px 20px;
  }

  .about-heading {
    font-size: 22px;
  }
}
