@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

  .top-button {
    background-color: #31b6fd;
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 15px;
    cursor: pointer;
  }

  .section {
    background-color: white;
    padding: 20px;
    margin: 15px 0;
  }

  .section a {
    display: block;
    color: #000;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }

  .section a:last-child {
    border-bottom: none;
  }

  .customer-service {
    display: flex;
    align-items: center;
    padding: 10px;
  }

  .customer-service img {
    width: 40px;
    margin-right: 10px;
  }

  .footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #e9edf4;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    border-top: 1px solid #ccc;
  }

  .footer div {
    text-align: center;
    font-size: 14px;
    color: #333;
  }

  .content-container {
    padding: 20px;
  }
  .top-button {
    background-color: #31b6fd;
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 15px;
    border: none;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 20px;
    cursor: pointer;
  }
  .section {
    background-color: white;
    padding: 20px;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0,0,0,0.05);
  }
  .section a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }
  .section a:last-child {
    border-bottom: none;
  }
  .customer-service {
    display: flex;
    align-items: center;
    padding: 10px 0;
  }
  .customer-service img {
    width: 40px;
    margin-right: 10px;
  }
  .customer-service div {
    line-height: 1.2;
  }

  /* === Tambahan untuk Bottom Navbar === */
.bottom-navbar {
  height: 110px;
  background-color: white;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
}

.bottom-navbar a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bottom-navbar a span {
  font-size: 20px;
}

.bottom-navbar a:hover {
  color: #007bff;
}

/* Active Link (opsional) */
.bottom-navbar a.active {
  color: #007bff;
  font-weight: bold;
}