/* ======================= */
/* Mission Section Layout  */
/* ======================= */

#Mission {
  width: 100%;
}

/* Decorative corner image */
.mission-corner-image {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
}

.mission-corner-image img {
  width: clamp(80px, 15vw, 180px);
  opacity: 0.35;
  pointer-events: none;
}

/* Main container */
.about-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(60px, 8vw, 120px) clamp(20px, 6vw, 80px);
  min-height: 60vh;

  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url("../images/business-growth.jpg") center / cover no-repeat;

  color: white;
  text-align: center;
}

/* Content wrapper */
.about-content {
  max-width: 900px;
  margin: 0 auto;
}

/* Title */
.mission-title {
  font-family: "Science Gothic";
  font-weight: 300;
  font-size: clamp(36px, 7vw, 96px);
  margin-bottom: 32px;
  line-height: 1.1;
}

/* Description */
.description-us {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================== */
/* Tablet Adjustments */
/* ============================== */

@media (max-width: 768px) {
  .about-section {
    padding: 80px 24px;
  }

  .mission-corner-image {
    top: 16px;
    left: 16px;
  }
}

/* ============================== */
/* Mobile Adjustments */
/* ============================== */

@media (max-width: 480px) {
  .mission-corner-image img {
    opacity: 0.2;
  }

  .about-section {
    min-height: auto;
    padding: 72px 16px;
  }
}

@media (max-width: 600px) {
  .mission-title {
    font-size: 1.4rem;
  }
}
