
 
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Roboto', sans-serif;
      background-color: #f2f6fc;
      color: #333;
      line-height: 1.6;
    }
    .redirect-button {
  display: inline-block;
  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);
}

/* Responsive */
@media (max-width: 768px) {
  .redirect-button {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

    header {
      background: linear-gradient(to right, #4b6cb7, #182848);
      color: white;
      padding: 2rem 1rem;
      text-align: center;
    }

    header h1 {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
    }

    header p {
      font-size: 1.1rem;
    }

    .container {
      max-width: 1000px;
      margin: 2rem auto;
      padding: 1rem;
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
    }

    .section {
      margin-bottom: 2rem;
    }

    .section h2 {
      color: #4b6cb7;
      margin-bottom: 0.5rem;
    }

    .section p {
      margin-bottom: 1rem;
    }

    .section img {
      width: 100%;
      border-radius: 8px;
      margin-top: 1rem;
    }

    .icon {
      color: #4b6cb7;
      margin-right: 8px;
    }
.footer {
  background-color: #0a0a0a;
  color: #ffffff;
  padding: 40px 20px 20px;
  margin-top: 50px;
  font-size: 0.95rem;
}

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

.footer-logo h2 {
  color: #00bcd4;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-contact h3,
.footer-social h3 {
  margin-bottom: 10px;
  color: #00bcd4;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
  margin-right: 10px;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #00bcd4;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  margin-top: 30px;
  font-size: 0.85rem;
  color: #bbb;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
}

    @media (max-width: 768px) {
      header h1 {
        font-size: 2rem;
      }

      .container {
        margin: 1rem;
      }
    }
