body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(135deg, #f8f9fa 0%, #e0eafc 100%);
      margin: 0;
      padding: 0;
      overflow-x: hidden;
      color: #333;
    }
              .redirect-button {
  display: inline-block;
  height: 30px;
  width: 75px;
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #4c6ef5, #15aabf);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(21, 170, 191, 0.4);
  position: relative;
  
  overflow: hidden;
}

.redirect-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: skewX(-20deg);
  transition: left 0.5s ease-in-out;
}

.redirect-button:hover::before {
  left: 130%;
}

.redirect-button:hover {
  box-shadow: 0 6px 16px rgba(21, 170, 191, 0.6);
  transform: translateY(-2px);
}
    .container {
      max-width: 950px;
      margin: 70px auto;
      background-color: #ffffff;
      border-radius: 18px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      padding: 40px;
      display: block;
      transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    }
    .toggle-buttons {
      position: fixed;
      top: 20px;
      right: 30px;
      z-index: 1000;
    }
    .toggle-buttons button {
      margin-left: 12px;
      padding: 10px 22px;
      border: none;
      border-radius: 25px;
      background: linear-gradient(90deg, #007bff, #00c6ff);
      color: white;
      font-weight: bold;
      font-size: 14px;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    .toggle-buttons button.active {
      background: linear-gradient(90deg, #0056b3, #006dff);
    }
    .content-box {
      border: 1px solid #ddd;
      padding: 25px;
      border-radius: 15px;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease-in-out;
      background: #ffffff;
    }
    .content-box.show {
      opacity: 1;
      transform: translateY(0);
    }
    .hidden {
      display: none;
    }
    .image-header {
      width: 100%;
      border-radius: 12px;
      margin-bottom: 25px;
      display: block;
      max-height: 320px;
      object-fit: cover;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    h2, h4 {
      color: #003366;
    }
    ul li {
      line-height: 1.7;
      margin-bottom: 8px;
    }
    p {
      line-height: 1.8;
    }
    .container.hide {
      opacity: 0;
      transform: translateY(-20px);
      pointer-events: none;
    }
     .footer-note {
            text-align: center;
            margin-top: 40px;
            font-size: 0.9em;
            color: #666;
            padding-top: 20px;
            border-top: 1px dashed #e0e0e0;
        }

        b {
            color: #0056b3;
        }
        .footer {
  background: linear-gradient(135deg, #002244, #004477);
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-top: 60px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-logo h2 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #00c6ff;
}

.footer-logo p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccddee;
}

.footer-contact h3,
.footer-social h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-contact p,
.footer-contact a {
  font-size: 14px;
  color: #ddf;
  margin: 4px 0;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-social a {
  font-size: 20px;
  color: #ffffff;
  margin-right: 15px;
  transition: transform 0.3s ease;
}

.footer-social a:hover {
  color: #00c6ff;
  transform: scale(1.2);
}

.term {
  margin-top: 20px;
}

.term a {
  color: #ccc;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.term a:hover {
  color: #00c6ff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #bbb;
}
