body {
  margin: 0;
  background: #f5f7fa;
   font-family: 'Montserrat', sans-serif;
  color: #333;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #000038, #1a1a6e);
  color: white;
  padding: 100px 20px;
    background:linear-gradient(120deg,#000038,#001a6e,#000038);
    background-size:200% 200%;
    animation:gradientMove 12s ease infinite;
}

@keyframes gradientMove{
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}

.hero h1 {
    padding-left: 20px;
  text-align: left;
  font-size: 52px;
  margin-bottom: 20px;
  font-weight: 400;
}

.hero strong{
    color: #f58220;
}

.hero p {
  padding-left: 20px;
  text-align: left;
  margin: auto;
  font-size: 12px;
  opacity: 0.9;
  line-height: 1.4;
}

/* TOGGLE */
.toggle-section {
  text-align: center;
  margin-top: -30px;
}

.toggle-buttons {
  display: inline-flex;
  background: white;
  padding: 8px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.toggle-btn {
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  cursor: pointer;
  background: transparent;
  font-weight: 600;
  transition: 0.3s ease;
}

.toggle-btn.active {
  background: #000038;
  color: white;
}

.toggle-btn:hover {
  transform: translateY(-2px);
}

/* CONTENT */
.content-section {
  padding: 60px 10px;
  max-width: 1200px;
  margin: auto;
}

.content {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.active-content {
  display: block;
  opacity: 1;
}

/* STEP CARD */
.step-card {
  background: white;
  border-left: 5px solid #000038;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 5px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-card h3{
  color: #000038;
  padding-bottom: 10px;
}

.step-card strong{
  color: #f58220;
}

.step-card p{
  line-height: 1.5;
}
.step-number {
  width: 40px;
  height: 40px;
  background: #000038;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  margin-bottom: 15px;
}

.step-card img {
  width: 40%;
  box-shadow: 5px 5px 5px 5px rgba(169, 169, 169);
  margin-top: 15px;
}

/* INFO BLOCK */
.info-block {
  background: white;
  border-left: 5px solid #000038;
  padding: 35px;
  border-radius: 5px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  margin-bottom: 50px;
}

.info-block h2 {
  margin-bottom: 15px;
  color: #000038;
}

.info-block p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.info-block p strong{
  color: #f58220;
}

.info-block a {
  color: blue;
  font-weight: 600;
  text-decoration: underline;
  transition: 0.3s ease;
}

.info-block a:hover {
  opacity: 0.7;
}

.info-block img {
  width: 100%;
  border-radius: 8px;
  margin: 20px 0;
}

.feature-list {
  padding-left: 20px;
  margin-bottom: 20px;
}

.feature-list img{
  width: 30%;
  box-shadow: 5px 5px 5px 5px rgba(169, 169, 169);
  margin-top: 15px;
  margin-bottom: 15px;
}
.feature-list li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* MFA GROUP */
.mfa-group {
  margin-bottom: 50px;
}

.mfa-group h2 {
  margin-bottom: 25px;
  border-left: 4px solid #000038;
  padding-left: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .toggle-buttons {
    flex-direction: column;
    border-radius: 15px;
  }

  .toggle-btn {
    width: 100%;
    margin-bottom: 5px;
  }

  .hero h1 {
    font-size: 28px;
  }
}
/*---------MEDIA QUERY-----------*/
@media (min-width: 1400px) {

  .hero {
    padding: 140px 20px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero p {
    font-size: 18px;
  }

  .content-section {
    max-width: 1360px;
  }

  .step-card img,
  .feature-list img {
    width: 25%;
  }

}

@media (max-width: 1200px) {

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 14px;
  }

  .content-section {
    max-width: 1000px;
  }


}

@media (max-width: 992px) {

  .hero {
    padding: 80px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 14px;
  }

  .toggle-buttons {
    padding: 6px;
  }

  .toggle-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .step-card {
    padding: 20px;
  }

  .step-card img,
  .feature-list img {
    width: 45%;
  }

  .info-block {
    padding: 25px;
  }

}

@media (max-width: 768px) {

  .hero {
    padding: 70px 20px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 14px;
  }

  .toggle-buttons {
    flex-direction: column;
    border-radius: 15px;
    width: 90%;
  }

  .toggle-btn {
    width: 100%;
    margin-bottom: 6px;
  }

  .content-section {
    padding: 50px 15px;
  }

  .step-card {
    padding: 18px;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .step-card img,
  .feature-list img {
    width: 100%;
  }

  .info-block {
    padding: 20px;
  }

}

@media (max-width: 576px) {

  .hero {
    padding: 60px 15px;
  }

  .hero h1 {
    font-size: 22px;
  }

  .hero p {
    font-size: 13px;
    line-height: 1.6;
  }

  .toggle-btn {
    font-size: 13px;
    padding: 10px;
  }

  .step-card {
    margin-bottom: 20px;
  }

  .step-card h3 {
    font-size: 16px;
  }

  .step-card p {
    font-size: 13px;
  }

  .info-block h2 {
    font-size: 18px;
  }

  .info-block p,
  .feature-list li {
    font-size: 13px;
  }

}
