:root {
  --color-primary: #7d60af;
  --color-text-dark: #1d1d1b;
  --color-bg: #ffffff;
  --font-main: 'Montserrat', sans-serif;
}

.schoolabout {
  padding: 20px 0 50px 0;
  overflow: hidden;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}

.schoolabout__content {
  max-width: 680px;
  opacity: 0;
  transform: translateX(0px)!important;
}

.schoolabout__title {
  color: #7d60af;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.7rem);
  line-height: 1.2;
}

.schoolabout__description {
  color: #1d1d1b;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.7rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.schoolabout__author {
  color: #1d1d1b;
  font-weight: 400;
  font-size: 0.875rem;
  opacity: 0.8;
  margin-top: 2rem;
}

.schoolabout__image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0.9);
}

.schoolabout__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1.1;
  border-radius: 80px;
  overflow: hidden;
  /* Fallback color matching the lady.png background style */
  background-color: #bca8cc; 
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  transition: transform 0.1s ease-out;
}

.schoolabout__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Hover effect on image wrapper */
.schoolabout__image-wrapper:hover .schoolabout__img {
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .schoolabout {
    padding: 60px 0;
    text-align: center;
  }
  
  .schoolabout__content {
    margin: 0 auto;
  }

  .schoolabout__image-wrapper {
    margin: 0 auto;
    border-radius: 60px;
  }

  .schoolabout__description {
    font-size: 1.6rem;
  }
}

@media (max-width: 575.98px) {
  .schoolabout__description {
    font-size: 1.3rem;
  }

  .schoolabout__image-wrapper {
    border-radius: 40px;
  }
}