
/* ABOUT SECTION STYLES */

.about-section {
  padding: 60px 20px;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* LEFT IMAGE AREA */
.about-image-section {
  position: relative;
  flex: 1;
}

.about-since {
  position: absolute;
  left: -40px;
  top: 0;
  background: #420172;
  color: #eddefa;
  padding: 20px 10px;
  font-weight: bold;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.about-image-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: grayscale(100%);
}

/* RIGHT CONTENT AREA */
.about-content-section {
  flex: 1;
}

.about-title {
  font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-highlight {
  font-family: 'Inter', sans-serif;
  color: #64009e;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-description {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #444;
}

.about-button {
  display: inline-block;
  background-image: linear-gradient(135deg, #971fff, #64009e);
  color: #fcf9ff;
  padding: 14px 32px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.about-button:hover {
  background: #a410b2;
  box-shadow: #350162 0px 8px 15px rgba(108, 1, 141, 0.4);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    gap: 40px;
  }

  .about-title {
    font-size: 34px;
  }

  .about-since {
    left: 0;
    top: -50px;
    writing-mode: horizontal-tb;
    transform: none;
  }
}

@media (max-width: 576px) {
  .about-image {
    height: 220px;
  }

  .about-title {
    font-size: 28px;
  }
}

