* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

h1, h2, h3, p {
  margin: 0;
}

.section-spacer {
  margin-bottom: 60px;
}



/* CSS for section section:Header */
.site-header {
  background-color: #fff;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
  padding: 15px 0;
  position: relative;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-logo {
  width: 150px;
  /* height: 46px; */
  object-fit: contain;
}

.header-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-text {
  font-size: 14px;
  color: #333;
}

.time-badge {
  background-color: #026ea9;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  .header-right {
width: 70%;
gap: 5px;
  }
  .header-text {
    font-size: 12px;
  }
}

/* CSS for section section:Hero */
.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-banner-wrapper {
  width: 100%;
  max-width: 980px;
  margin-top: 0;
  margin-bottom: 40px;
}

.hero-banner {
  width: 100%;
  border-radius: 0;
}

.hero-content {
  max-width: 780px;
  margin: 0 auto;
}

.hero-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-divider {
  margin: 0 auto;
  display: block;
}

/* CSS for section section:Survey */
.survey-card {
  max-width: 778px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 16px;
  box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.25);
  padding: 40px;
  text-align: center;
}

.survey-question {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 30px;
  text-align: left;
}

.survey-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
}

.survey-btn {
  background-color: #026ea9;
  color: white;
  width: 100%;

  padding: 10px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s;
}

.survey-btn:hover {
  transform: translateY(-2px);
}

.btn-circle {
  width: 34px;
  min-width: 34px;
  height: 34px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1b2439;
  font-weight: 700;
  font-size: 16px;
}

.btn-text {
  font-size: 18px;
  font-weight: 500;
  text-align: left;
}

.survey-notes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.survey-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.note-circle {
  width: 10px;
  min-width: 10px;
  height: 10px;
  border: 2px solid #026ea9;
  border-radius: 50%;
  margin-top: 5px;
}

.note-text {
  font-size: 14px;
  font-style: italic;
  line-height: 1.45;
  color: #5b5b5b;
}

/* CSS for section section:Methods */
.methods-wrapper {
  max-width: 780px;
  margin: 0 auto;
}

.methods-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.methods-card {
  background-color: #026ea9;
  border-radius: 16px;
  padding: 30px;
  color: white;
}

.method-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
}

.method-icon-wrapper {
  width: 60px;
  display: flex;
  justify-content: center;
}

.method-text {
  flex-grow: 1;
  font-size: 18px;
  font-weight: 500;
  padding: 0 20px;
}

.method-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  width: 100%;
}

/* CSS for section section:Registration */
.form-card {
  max-width: 390px;
  margin: 0 auto;
  background-color: #005a95;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.25);
  color: white;
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-logo {
  width: 150px;
  /* height: 66px; */
  margin: 0 auto 20px;
  border-radius: 8px;
}

.form-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.reg-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 5px;
}

.form-group label {
  font-size: 14px;
  opacity: 0.9;
}

.form-input {
  background: transparent;
  border: none;
  color: white;
  font-size: 18px;
  outline: none;
  width: 100%;
}

.form-input::placeholder {
  color: #ffffffd9;
}

.phone-input-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

#section-map {
  margin-bottom: 0;
}

.flag-prefix {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-right: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.submit-btn {
  background: linear-gradient(90deg, #E30613 0%, #CB040F 100%);
  color: white;
  font-weight: 700;
  font-size: 18px;
  padding: 15px;
  border-radius: 68px;
  margin-top: 20px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.35);
}

.form-footer {
  margin-top: 20px;
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

/* CSS for section section:Map */
.map-section-bg {
  background-color: #f2f4f3;
  padding: 60px 0;
}

.map-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.map-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.map-subtitle {
  color: #005a95;
  font-size: 18px;
  max-width: 800px;
  margin-bottom: 40px;
}

.map-image-wrapper {
  width: 100%;
  max-width: 980px;
  margin-bottom: 40px;
}

.cta-btn {
  background: linear-gradient(90deg, #E30613 0%, #CB040F 100%);
  color: white;
  font-weight: 700;
  font-size: 18px;
  padding: 15px 60px;
  border-radius: 68px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  display: block;
  text-align: center;
}

/* CSS for section section:Transactions */
.transactions-bg {
  background-color: #005a95;
  padding: 60px 0;
  color: white;
}

.transactions-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.transactions-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.transactions-grid {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 980px;
  justify-content: center;
  flex-wrap: wrap;
}

.transaction-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 300px;
}

.trans-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  color: black;
  box-shadow: 0px 4px 10px rgba(4, 28, 44, 0.28);
}

.trans-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
  font-size: 14px;
}

.trans-name {
  font-weight: 700;
}

.trans-status {
  color: #6b6b6b;
}

.trans-body {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.trans-amount {
  color: #e30613;
  font-size: 24px;
  font-weight: 700;
}

.trans-type {
  text-align: right;
  font-size: 12px;
  color: #6b6b6b;
  line-height: 1.2;
}

.trans-progress {
  width: 100%;
}

.progress-bar {
  height: 8px;
  background-color: #d6dfe5;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background-color: #33b77e;
}

/* CSS for section section:Reviews */
.reviews-bg {
  background-color: #f2f4f3;
  padding: 60px 0;
}

.reviews-container {
  max-width: 975px;
  margin: 0 auto;
}

.reviews-header {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.reviews-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.reviews-subtitle {
  color: #333;
  margin-bottom: 20px;
}

.reviews-rating-box {
  background: white;
  border: 1px solid #dee0df;
  border-radius: 10px;
  padding: 15px 20px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.rating-num {
  font-weight: 700;
  font-size: 20px;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars img {
  width: 20px;
  height: 20px;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.review-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0px 1px 1px rgba(4, 28, 44, 0.18);
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.reviewer-details {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.reviewer-name {
  font-weight: 700;
}

.review-likes {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #e30613;
  font-weight: 700;
}

.review-text {
  font-size: 14px;
  line-height: 1.5;
}

/* CSS for section section:Footer */
.site-footer {
  background-color: #005a95;
  color: white;
  padding: 60px 0 20px;
}

.footer-container {
  display: flex;
flex-direction: column;
  gap: 40px;
}

.mini-flex {
  display: flex;
align-items: center;
gap: 7px;
}

.footer-flex {
  display: flex;
  gap: 40px;

  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.footer-logo {
  width: 200px;
  /* height: 86px; */
  border-radius: 8px;
}

.footer-content {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;

}

.footer-col h3 {
  font-size: 16px;
  margin-bottom: 15px;
}

.contact-item {
  display: flex;
  gap: 10px;
flex-direction: column;
}

.footer-bottom {
  text-align: center;
}

.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}

.copyright {
  font-size: 14px;
  opacity: 0.8;
}




.secure {
  display: flex;
  gap: 8px;
  align-items: center;

}

.star-flex {
  display: flex;
  gap: 8px;
  justify-content: end;
  align-items: end;
  flex-direction: column;
}

#section-hero {
  margin-bottom: 30px;
}


.loading {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


.stepper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  gap: 7px;
}

.step {
  border-radius: 50%;
border: 1px solid #026ea9;
width: 11px;
height: 11px;
}

.step.active {
  background: #026ea9;
}


#section-registration, .quiz, .burger {
  display: none;
}

.quiz1 {
  display: block;
}




@media(max-width: 600px) {
  .hero-container {
    padding: 0;
  }

  .hero-title {
    padding: 0 15px;
    font-size: 26px;

  }

  .methods-title, .map-title, .transactions-title {
    font-size: 26px;
  }

  .survey-question {
    font-size: 18px;
  }
  .btn-text {
    font-size: 16px;
  }

  .note-text {
    font-size: 13px;
  }

  .cta-btn {
    width: 100%;
  }

  .reviews-header, .star-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .footer-flex {
    flex-direction: column;
    justify-content: center;
    align-items: center;

  }
  .footer-content {
    gap: 25px;
  }

  .burger {
    display: flex;
    width: 30px;
    flex-direction: column;
    gap: 7px;
  }

  .burger span {
    width: 100%;
    height: 2px;
    background-color: #010101;
  }
  .header-left {
    gap: 15px;
  }
.header-container {
  flex-wrap: nowrap;
}
}
