.footerinfo {
  text-align: center;
}

.connect-title {
  color: #f71e6a;
  display: block;
  font-weight: bold;
  margin: 0rem 0 0rem 0;
}

/* Section title styling */
.section-title {
  display: block;
  font-size: 1.5rem;
  color: #f71e6a;
  font-weight: bold;
  margin: 2rem 0 1rem 0;
  border-bottom: 2px solid grey; /* Red underline */
  padding-bottom: 0.3rem;
}

/* Certificate container */
.certificate-container {
  margin: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.certificate-container > div {
  transform: scale(0.8);
  transform-origin: left top;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .certificate-container {
    justify-content: center;
  }
}

/* Cleaner list styling */
#about-content ul {
  list-style-type: none;
  padding-left: 0;
}

#about-content ul li {
  margin-bottom: 0.8rem;
  padding-left: 1.2rem;
  text-indent: -1.2rem;
}

#about-content ul li:before {
  content: "• ";
  color: var(--accent-color);
}
