
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: linear-gradient(135deg, #ff7f50, #ff1493);
      color: #fff;
      overflow-x: hidden;
    }

    header {
      padding: 20px 40px;
      background: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    header h1 {
      font-size: 28px;
      color: #ff5733;
    }

    nav a {
      margin-left: 20px;
      text-decoration: none;
      color: #333;
      font-weight: 600;
      transition: color 0.3s ease;
    }

    nav a:hover {
      color: #ff5733;
    }

    .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: black;
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 70px;
  right: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border-radius: 10px;
  padding: 10px;
  flex-direction: column;
  gap: 10px;
  z-index: 5;
}

.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.mobile-nav.open {
  display: flex;
}

    .about-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
      text-align: center;
    }

    .about-section h2 {
      font-size: 3rem;
      color: #fff;
      margin-bottom: 30px;
      animation: fadeInDown 1s ease forwards;
    }

    .about-section p {
      font-size: 1.2rem;
      line-height: 1.6;
      color: #f8f8f8;
      animation: fadeInUp 1.5s ease forwards;
      margin-bottom: 30px;
    }

    .about-section img {
      border-radius: 50%;
      width: 150px;
      height: 150px;
      margin-bottom: 30px;
      animation: bounce 2s ease infinite;
    }

    .about-section .team-member {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 40px;
      animation: fadeIn 1.5s ease forwards;
    }

    .about-section .team-member h3 {
      margin-left: 20px;
      font-size: 1.8rem;
      color: #ff6f61;
    }

    footer {
      background: #fff;
      text-align: center;
      padding: 20px;
      font-size: 0.9rem;
      box-shadow: 0 -3px 10px rgba(0,0,0,0.05);
      color: #444;
    }

    @keyframes fadeInDown {
      0% { opacity: 0; transform: translateY(-20px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(20px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }

    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(20px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 768px) {
      .about-section h2 {
        font-size: 2rem;
      }

      .about-section p {
        font-size: 1rem;
      }

      .about-section img {
        width: 120px;
        height: 120px;
      }
    }


    @media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}