.about-section { max-width: 1100px; margin: auto; padding: 2rem; font-size: 1.1rem; line-height: 1.6; }
    .about-section h1 { text-align: center; font-size: 2.5rem; margin-bottom: 2rem; color: #000000; }
    .bio-section { display: flex; flex-wrap: wrap; align-items: flex-start; margin-top: 3rem; gap: 2rem; }
    .bio-section img { border-radius: 8px; max-width: 100%; height: auto; }
    .bio-text { flex: 1 1 500px; }
    .bio-image { flex: 1 1 350px; text-align: center; }
    .signature { max-width: 180px; margin-top: 1rem; }
    .divider { border-top: 1px solid #ccc; margin: 3rem 0; }
    
    .bio-section {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    }

    .bio-text {
    flex: 1 1 500px;
    text-align: center;
    margin: 0 auto;
    }

    .bio-image {
    flex: 1 1 350px;
    text-align: center;
    padding-top: 1.2rem; /* ← Add this line */
    }

    .bio-name {
    text-align: center;
    margin-top: 0.5rem;
    font-weight: bold;
    }

    .signature {
    max-width: 180px;
    height: auto;
    }

/* ✅ MOBILE NAV STYLES ONLY */
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1000;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    padding: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }
}