/* General Layout */
.info-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 20px;
  display: flex;
  flex-direction: column; /* Keep vertical layout */
  gap: 20px;
}

/* Info Boxes */
.info-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Headers */
.info-box h2 {
  background-color: #2D1D74;
  color: white;
  padding: 12px;
  border-radius: 8px 8px 0 0;
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* History Image */
.content img {
  width: 100px;
  display: block;
  margin: 15px auto;
  border-radius: 10px;
}

/* Text */
.info-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 10px;
}

/* Mission List */
.info-box ul {
  padding: 0;
  list-style: none;
}

/* List Style */
.info-box li {
  list-style: none;
  background: #f4f4f4;
  padding: 8px 12px;
  border-radius: 6px;
  margin: 5px 0;
}

/* Mission Box Style */
.info-box.mission {
  background: linear-gradient(to right, #2D1D74, #6A5ACD);
  color: white;
}

.info-box.mission h2 {
  background: rgba(0, 0, 0, 0.2);
}

.info-box.mission li {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .info-section {
      padding: 15px;
  }

  .info-box {
      padding: 20px;
  }

  .info-box h2 {
      font-size: 18px;
      padding: 10px;
  }

  .content img {
      width: 80px;
  }

  .info-box p, .info-box li {
      font-size: 14px;
      line-height: 1.5;
  }
}
