.about .content h2 {
  font-weight: 700;
  font-size: 24px;
  color: var(--heading-color);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 15px; /* Slightly reduced margin */
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: var(--font-primary);
}

.about .content ul strong {
  margin-right: 10px;
  color: var(--accent-color); /* Highlighting the key fields */
  font-weight: 600;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
  line-height: 0;
}

.about .content {
  background: var(--surface-color); /* Using surface color */
  border: 1px solid var(--border-color); /* Subtle border */
  border-radius: 12px; /* Modern rounded corners */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
  padding: 40px;
  transition: all 0.5s ease;
  word-wrap: break-word;
  overflow: hidden;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.about .content:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7), 0 0 10px rgba(0, 188, 212, 0.2);
    transform: translateY(-2px);
}

/* Light Mode Overrides */
.light-mode .about .content {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.light-mode .about .content:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15), 0 0 10px rgba(0, 151, 167, 0.2);
}


@media (max-width: 768px) {
  .about .content {
    padding: 20px;
    max-width: 100%; 
    margin: 0 15px; 
    transform: translateY(0); 
  }
  .about .content ul li {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about .content {
    padding: 15px;
    margin: 0 10px;
  }
  .about .content .row > div {
    /* Stack the two columns in the info section */
    flex-basis: 100%;
    max-width: 100%;
  }
  .about .content .row .col-lg-6:first-child {
    margin-bottom: 10px;
  }
}
