/* Container */
.about-section {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #e0e6f0;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  box-shadow: 0 12px 40px rgba(0, 114, 255, 0.25);
}

/* Title */
.section-title {
  font-size: 2rem;
  font-weight: 900;
  color: #38bdf8; /* sky-400 */
  margin-bottom: 1.25rem;
  text-align: center;
  letter-spacing: -0.04em;
}
.section-title-about {
  font-size: 2rem;
  font-weight: 900;
  color: #000000; /* sky-400 */
  margin-top: 0.25rem;
  margin-bottom: 1.25rem;
  text-align: center;
  letter-spacing: -0.04em;
}

/* Paragraphs */
.section-msg {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  color: #000; /* slate-300 */
}

.section-msg strong {
  color: #049; /* lighter sky */
}

.highlight {
  color: #049;
  font-weight: 600;
}

/* Features list */
.features-list {
  list-style: none;
  padding-left: 0;
  margin: 2rem auto; /* add vertical margin and center horizontally */
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  text-align: left;
  width: 100%; /* ensures it doesn't exceed the container */
  
  max-width: 850px;
  margin: 0 auto 30px auto;
}

.features-list li {
  background: #1e293b; /* slate-800 */
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.15);
  display: flex;
  align-items: flex-start;
  font-weight: 600;
  color: #e0e6f0;
  line-height: 1.4;
  transition: background-color 0.3s ease;
  cursor: default;
  text-align: left;
}

.features-list li:hover {
  background-color: #2563eb; /* blue-600 */
  color: #dbeafe;
}

.features-list .icon {
  font-size: 1.8rem;
  margin-right: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Blockquote */
.section-quote {
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
  text-align: center;
  color: #049; /* sky-300 */
  border-left: 0px solid #38bdf8;
  padding-left: 1rem;
  max-width: 650px;
  margin: 0 auto 3rem auto;
  user-select: none;
}

/* Bonus button styling (optional) */
.about-section .btn-primary {
  display: inline-block;
  padding: 0.75rem 2rem;
  color: #1e293b;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: 0 8px 20px rgba(56, 221, 248, 0.5);
  text-decoration: none;
  transition: background-color 0.25s ease;
  margin-top: 1.5rem;
}

.about-section .btn-primary:hover {
  color: white;
}

.features-list .icon {
  font-size: 1.8rem;
  margin-right: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  display: inline-block;
  transform-origin: center;
  animation: pulse 3s ease-in-out infinite alternate;
  transition: transform 0.3s ease;
}

/* Slight scale up on hover of list item */
.features-list li:hover .icon {
  animation-play-state: paused;
  transform: scale(1.25) rotate(10deg);
  filter: drop-shadow(0 0 6px #38bdf8);
}
.features-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  
  max-width: 850px;
  margin: 0 auto 30px auto;
}

.features-list li {
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #38bdf8;
  display: inline-block;
    padding: 6px;
}

.feature-desc {
  font-size: 0.95rem;
  font-weight: 400;
  color: #ccc;
  line-height: 1.6;
  display: block;
  margin-top: 0.25rem;
    padding: 6px;
}


/* Slow pulsing scale */
@keyframes pulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px #38bdf8);
  }
  100% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 6px #7dd3fc);
  }
}

@media (max-width: 768px) {
  .features-list {
    grid-template-columns: 1fr;
    padding: 6px;
  }

  .feature-title {
    font-size: 1.05rem;
    margin-bottom: 0.5rem; /* Increased spacing here */
    padding: 6px;
  }

  .feature-desc {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .feature-icon {
    font-size: 1.6rem;
  }

  .features-list li {
    padding: 1rem;
  }
}

@media (max-width: 600px) {
  .features-list .feature-title {
    padding: 6px;
  }
}

