/* ====== Mobile Menu ====== */
@media (max-width: 768px) {
  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 220px;
    height: 100%;
    background: #fff;
    flex-direction: column;
    padding-top: 60px;
    gap: 20px;
    transition: right 0.4s ease;
  }

  nav ul.active {
    right: 0;
  }

  nav .btn {
    display: block;
    color: #333;
  }
}

/* ====== Responsive Sections ====== */
@media (max-width: 900px) {
  .about-content-wrapper {
    flex-direction: column;
  }
  .img-overlay h1 {
    font-size: 28px;
  }
  .headings {
    font-size: 24px;
  }
}