/* ===========================
   ABOUT SECTION
=========================== */

#about {
  padding: 76px 20px;
  min-height: 60vh;
  text-align: center;
  //background: linear-gradient(180deg, #ffffff 0%, #e3edff 100%);
  //border-top: 6px solid red;
 // border-bottom: 6px solid red;
 // box-shadow: inset 0 10px 20px rgba(0,0,0,0.05);
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

#about h2 {
  font-size: 2rem;
  color: #000;
  text-shadow: 2px 2px 0 #ffef00;
  margin-bottom: 25px;
}

.intro {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.story {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 40px;
}

.highlight {
  color: #0073ff;
  font-weight: 800;
}

.about-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.about-box {
  background: #fff;
  border: 3px solid #000;
  padding: 20px;
  width: 260px;
  box-shadow: 5px 5px 0 #000;
  text-align: left;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.about-box:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 #000;
}

.about-box h3 {
  margin-top: 0;
  color: #0073ff;
}

.about-box ul {
  list-style: none;
  padding: 0;
}

.about-box li {
  margin: 8px 0;
}

.signature {
  font-style: italic;
  margin: 30px 0;
  opacity: 0.8;
  font-size: 1.1rem;
}

.contact p {
  margin: 5px 0;
}

.contact a {
  color: #0073ff;
  font-weight: bold;
  text-decoration: none;
}

.contact a:hover {
  color: #ff0033;
}

/* Responsive */
@media (max-width: 700px) {
  .about-box {
    width: 100%;
  }
}
