/* ABOUT SECTION */
.about {
  padding: 80px 0;
  background: #020617;
}

.about-container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* TEXT */
.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #e0f2fe, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-content p {
  color: #cbd5f5;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* LIST */
.about-list {
  margin: 20px 0;
}

.about-item {
  color: #7dd3fc;
  margin-bottom: 10px;
  font-size: 15px;
}

/* IMAGE */
.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  filter: drop-shadow(0 0 20px rgba(56,189,248,0.4));
}

/* MOBILE */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content h2 {
    font-size: 24px;
  }

  .about-image {
    margin-top: 30px;
  }
}