.top-buttons {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
}

.top-left-button {
  background-color: #bcd9fe;
  color: #000;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-size: normal;
  transition: background-color 0.3s;
}

.top-right-button {
  background-color: #bcd9fe;
  color: #000;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-size: normal;
  transition: background-color 0.3s;
}

.top-left-button:hover,
.top-right-button:hover {
  background-color: #dce7f5;
}

body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background-color: #cfcfcf;
  color: #333;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 100vh; */
}

.info-section {
  /* flex: 1; */
  /* display: flex; */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.image-section img {
  height: 100vh;
  object-fit: contain;
  /* border-radius: 30px; */
}

.info-section {
  flex: 1;
  padding: 20px;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
  color: #2a5885;
}

.highlight-green {
  color: #3ac243;
  font-weight: bold;
}

.highlight-yellow {
  color: #fcce43;
  font-weight: bold;
}

.step {
  display: flex;
  margin: 15px 0;
}

.step-number {
  background-color: #2a5885;
  color: white;
  font-size: 1.5em;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 15px;
}

.step-text {
  flex: 1;
}

.footer {
  background-color: #dce7f5;
  padding: 20px 0;
  color: #1a1a1a;
  font-size: 16px;
}

.footer-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.footer-left,
.footer-middle,
.footer-right {
  flex: 0 1 180;
  min-width: 200px;
}

.footer-right {
  word-wrap: break-word;
  word-break: break-all;
}

.footer-logo {
  width: 100px;
  margin-bottom: 10px;
}

.footer-slogan {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.4;
}

.footer-social-icons img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
  transition: opacity 0.3s;
}

.footer-social-icons img:hover {
  opacity: 0.7;
}

.footer-middle a {
  display: block;
  color: #000;
  text-decoration: none;
  margin-bottom: 15px;
}

.footer-middle a:hover {
  text-decoration: underline;
}

.footer-right em {
  font-style: italic;
}

@media (max-width: 768px) {
  .container {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .top-buttons {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    margin-bottom: 10px;
  }

  .top-left-button,
  .top-right-button {
    width: auto;
  }

  .info-section {
    padding: 10px;
    order: 1;
  }

  .image-section {
    order: 2;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 15px;
  }

  .image-section img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  h1 {
    font-size: 1.5em;
  }

  h2 {
    font-size: 1.2em;
  }

  .mobile-hide {
    display: none;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 1.2em;
    line-height: 30px;
  }
}
