body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #111;
}

.header {
  background: #000;
  color: #d4af37;
  text-align: center;
  padding: 20px 10px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.header h1 {
  margin: 0;
  font-size: 32px;
}

.header .cta {
  background: orange;
  color: #000;
  padding: 10px 20px;
  display: inline-block;
  text-decoration: none;
  margin-top: 10px;
  font-weight: bold;
  border-radius: 5px;
}

.support {
  background: #fff;
  padding: 30px 20px;
  padding-bottom: 0;
  text-align: center;
}

.features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  display: grid;
  justify-content: center;
  justify-items: start;
}

.check-icon {
  color: #d4af37;
  font-weight: bolder;
  font-size: 18px;
  margin-right: 5px;
}

.features li {
  text-align: start;
}

.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.stats strong {
  font-size: 24px;
  color: #000;
}

.stats div {
  margin: 10px;
  text-align: center;
}

.loan-options {
  background: #f5f5f5;
  padding: 30px 20px;
  text-align: center;
}

.loan-options h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.partners {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.partner-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.partner-card img {
  max-height: 100px;
  width: 150px;
  margin-right: 1rem;
}

.partner-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.partner-card ul li {
  margin: 5px 0;
}

.partner-card .btn {
  background: #d4af37;
  color: #000;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  border: none;
}

.footer {
  text-align: center;
  padding: 15px;
  background: #000;
  color: #d4af37;
}

/* Modal popup */
.modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-height: 90%;
  max-width: 500px;
  position: relative;
  text-align: center;
}

.modal-content img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.modal-content p {
  margin-bottom: 10px;
}

.modal .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #000;
}

.modal-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

/* Modal popup buttons */
.modal-nav button,
#startRegister {
  padding: 10px 15px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  background: #d4af37;
  color: #000;
  cursor: pointer;
}

.popup-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
}

.popup-footer button {
  min-width: 100px;
}

.hidden-visibility {
  visibility: hidden;
}

#guide-step img {
  max-height: 400px;
}

#guide-step strong {
  font-weight: bolder;
  color: red;
}

#guide-step p {
  text-align: left;
  font-size: 16px;
}

#guide-step span {
  font-weight: bolder;
}

/* Navigation */
.main-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 20px 0;
}

.main-nav a {
  text-decoration: none;
  background-color: #000;
  color: #d4af37;
  padding: 10px 16px;
  border-radius: 10px;
  transition: background-color 0.2s;
}

.main-nav a:hover {
  background-color: #d4af37;
  color: #000;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #d4af37;
  cursor: pointer;
  margin: 10px 20px;
}

@media (max-width: 700px) {
  .partner-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .partner-card img {
    max-height: 100px;
    margin: 0;
    margin-bottom: 10px;
  }

  .partner-card ul {
    text-align: left;
  }

  .partner-card .btn {
    margin-top: 10px;
  }

  .stats {
    flex-direction: column;
    align-items: center;
  }

  .header h1 {
    font-size: 24px;
  }

  .header .cta {
    padding: 10px 16px;
    font-size: 14px;
  }

  .loan-options h2 {
    font-size: 18px;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav ul {
    display: none;
    flex-direction: column;
    align-items: start;
    gap: 10px;
    background: #000;
    padding: 15px;
    position: absolute;
    top: 50px;
    right: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }

  .main-nav a {
    border-radius: 5px;
    background-color: #000;
  }

  .main-nav a:hover {
    background-color: #000;
    color: #d4af37;
  }

  .main-nav ul.show {
    display: flex;
  }
}

.btn.open-guide {
  background: linear-gradient(135deg, #d4af37, #ffdd57);
  color: #000;
  padding: 12px 20px;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 rgba(212, 175, 55, 0.6);
  animation: pulse 2s infinite;
}

.btn.open-guide:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.8), 0 0 30px rgba(255, 221, 87, 0.6);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

#startRegister {
  background: linear-gradient(135deg, #d4af37, #ffdd57);
  color: #000;
  padding: 12px 20px;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 rgba(212, 175, 55, 0.6);
  animation: pulse 2s infinite;
  cursor: pointer;
}

#startRegister:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.8), 0 0 30px rgba(255, 221, 87, 0.6);
}

#startRegister::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  animation: rotateGlow 6s linear infinite;
  z-index: 0;
}

#startRegister {
  z-index: 1;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#prevStep, #nextStep {
  background-color: #000;
  color: #d4af37;
  padding: 10px 18px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transform: scale(1);
}

#prevStep:hover, #nextStep:hover {
  background-color: #d4af37;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

#prevStep:active, #nextStep:active {
  transform: scale(0.97);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.fade-slide-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.6s ease-out forwards;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
