body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #f4f4f4;
}

html {
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  background: #1e1e2d;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 50px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
}
.navbar a:hover {
  color: #ffcc00;
}

/* About Section */
.about-section {
  max-width: 1150px;
  margin: 60px auto;
  padding: 60px 30px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.about-section img {
  width: 850px;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  border: 3px solid #ffcc00;
}

.about-content h1 {
  font-size: 30px;
  margin-bottom: 6px;
  font-weight: 700;
  color: #1e1e2d;
}

.underline {
  width: 80px;
  height: 4px;
  background: #ffcc00;
  margin-bottom: 20px;
  border-radius: 4px;
}

.about-content p {
  color: #444;
  line-height: 1.75;
  margin-bottom: 20px;
  text-align: justify;
  font-size: 17px;
}

.about-content h2 {
  margin-top: 20px;
  color: #ffcc00;
  font-size: 22px;
  font-weight: 600;
}

.custom-list {
  margin-top: 10px;
  padding-left: 20px;
}

.custom-list li {
  margin: 6px 0;
  color: #333;
  font-size: 16px;
}

/* Footer */
.footer {
  background: #1e1e2d;
  color: #ccc;
  text-align: center;
  padding: 20px 10px;
  margin-top: 40px;
}
.footer a {
  color: #ffcc00;
  text-decoration: none;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

@media (max-width: 900px) {
  .navbar {
    padding: 12px 20px;
  }

  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-section img {
    width: 100%;
    height: auto;
  }

  .custom-list {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .nav-links a {
    margin-left: 0;
    margin: 8px;
    display: inline-block;
  }

  .about-section {
    padding: 40px 20px;
  }

  .about-content h1 {
    font-size: 26px;
  }

  .about-content p {
    font-size: 15px;
  }
}
