.about-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 241, 232, 0.78));

  display: flex;                 /* always flex */
  justify-content: center;
  align-items: center;
  z-index: 1000;

  opacity: 0;                    /* start hidden */
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.about-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.about-modal {
  position: relative;
  background: rgba(250, 248, 242, 0.96);
  border: 1px solid rgba(17, 24, 36, 0.08);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;

  padding: 2rem 3rem;
  max-width: 600px;
  width: 90%;

  /*Animation*/
  transform: scale(0.95) translateY(10px);
  opacity: 0;
  transition: all 0.3s ease;
}

.about-overlay.open .about-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  border: none;
  background: none;
  cursor: pointer;
}

.footer {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  width: 100%;
}

.footer a {
  font-weight: 500;
  text-decoration: none;
  color: inherit;
}

.about-modal p{
    color:rgb(73, 73, 73);
}
