    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      background: #fff;
      color: #222;
    }

    .container {
      width: 92%;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* NAVBAR */
    /* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  background: white;
  align-items: center;
}
/* Logo */
.logo {
  width: 155px;
  height: auto;
  margin-left: 170px;
}

/* Danh sách menu */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin-right: 120px;
}
.nav-links a {
  color: black;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  padding: 0 0 5px 5px;
}
.navbar .nav-links #active {
  border-bottom: 4px solid #EE4D2D;
  padding-bottom: 20px;
  color: #EE4D2D;
}
/* Hiệu ứng hover */
.nav-links a:hover {
  color: orange;
}
/* Dropdown */
.dropdown {
  position: relative;
  margin-left: 80px;
  margin-right: 60px;
}
.dropbtn {
  padding: 11px;  
  padding-left: 15px;
  padding-right: 15px;
  background: #f5f5f5;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  border: none;
}
.arrow {
  font-size: 12px;
}

.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;

  width: 160px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 5px;

  list-style: none;
  padding: 5px 0;
  display: none;
}

.dropdown-menu li {
  padding: 10px;
  cursor: pointer;
}

.dropdown-menu li:hover {
  background: #f0f0f0;
}

/* Nút đăng nhập */
.btn-login {
  margin-left: 20px;  
  width: 100px; 
  height: auto;   
  padding: 10px;
  background: white;
  border: 1px solid #EE4D2D;
  color: black;
  border-radius: 4px;
}
.btn-login:hover {
  background: rgb(255, 200, 100);
}
    /* HERO */
    .hero {
      margin-top: 10px;
    }

    .hero-box {
      background: linear-gradient(135deg, #fff3ed, #fff9f6);
      border-radius: 22px;
      padding: 60px 45px;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      align-items: center;
      overflow: hidden;
    }

    .badge {
      display: inline-block;
      background: white;
      color: #ee4d2d;
      padding: 10px 18px;
      border-radius: 25px;
      font-weight: bold;
      margin-bottom: 25px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }

    .hero-left h1 {
      font-size: 48px;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .hero-left h1 span {
      color: #ee4d2d;
    }

    .hero-left p {
      color: #555;
      font-size: 17px;
      line-height: 1.7;
      margin-bottom: 30px;
    }

    .hero-btns {
      display: flex;
      gap: 15px;
    }

    .btn {
      padding: 14px 24px;
      border-radius: 9px;
      text-decoration: none;
      font-weight: bold;
      transition: 0.3s;
    }

    .btn-main {
      background: #ee4d2d;
      color: white;
    }

    .btn-main:hover {
      background: #d93f22;
    }

    .btn-outline {
      border: 1px solid #ee4d2d;
      color: #222;
      background: white;
    }

    .btn-outline:hover {
      color: #ee4d2d;
    }

    .hero-right {
      text-align: center;
    }

    .hero-right img {
      width: 100%;
      max-width: 420px;
    }

    /* MEMBERS */
    .section-title {
      text-align: center;
      margin: 40px 0 30px;
    }

    .section-title h2 {
      font-size: 30px;
      margin-bottom: 10px;
    }

    .line {
      width: 55px;
      height: 3px;
      background: #ee4d2d;
      margin: 0 auto 15px;
    }

    .section-title p {
      color: #666;
    }

    .member-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 35px;
    }

    .member-card {
      background: white;
      border-radius: 16px;
      padding: 30px;
      display: flex;
      gap: 25px;
      align-items: center;
      box-shadow: 0 5px 20px rgba(0,0,0,0.12);
      transition: 0.3s;
    }

    .member-card:hover {
      transform: translateY(-6px);
    }

    .member-card img {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      object-fit: cover;
      
    }

    .member-info h3 {
      color: #ee4d2d;
      font-size: 24px;
      margin-bottom: 8px;
    }

    .role {
      color: #555;
      margin-bottom: 15px;
    }

    .desc {
      color: #555;
      line-height: 1.6;
      margin-bottom: 15px;
    }

    .socials {
      display: flex;
      gap: 15px;
    }

    .socials a {
      width: 34px;
      height: 34px;
      background: #fff0ea;
      color: #ee4d2d;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
    }

    /* VALUES */
    .values {
      margin: 35px 0;
      background: white;
      border-radius: 16px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.12);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      padding: 25px;
    }

    .value-item {
      display: flex;
      gap: 15px;
      align-items: center;
      padding: 0 25px;
      border-right: 1px solid #eee;
    }

    .value-item:last-child {
      border-right: none;
    }

    .value-icon {
      width: 55px;
      height: 55px;
      background: #fff0ea;
      color: #ee4d2d;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 22px;
    }

    .value-item h4 {
      margin-bottom: 6px;
    }

    .value-item p {
      color: #666;
      font-size: 14px;
      line-height: 1.5;
    }

    /* FOOTER */
    footer {
      text-align: center;
      padding: 22px;
      background: #fff3ed;
      color: #555;
      border-radius: 18px 18px 0 0;
    }
