body {
  margin: 0;
  font-family: Poppins, sans-serif;
  -webkit-font-smoothing: antialiased; /* Enable antialiasing for WebKit browsers */
  -moz-osx-font-smoothing: grayscale; /* Enable antialiasing for macOS */
}

header {
  width: 100%;
  top: 0;
  background-color: #013c57;
  height: 90px;
}

a {
  text-decoration: none;
  color: #0078a3;
}

.logo {
  display: flex;
  align-items: center; /* Vertically align items */ /* Optional: Center horizontally */
  height: 100%; /* Ensure the parent has a height */
}

.logo img {
  max-height: 100%; /* Ensure the image scales properly */
}

main {
  width: 100%;
}
.main-wrapper {
  margin: auto;
  width: 90%;
  color: #333333;
}

.button-wrapper {
  display: flex; /* Enable flexbox */
  flex-direction: column; /* Stack children vertically */
  align-items: center; /* Center horizontally */
}

.button-order {
  width: 90px;
  margin-top: 15px;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  outline: 0;
  background: #f8c3c6;
  color: #013c57;
  border: none;
  font-style: normal;
  font-weight: 700;
  padding: 12px 34px;
  border-radius: 15px;
}
.checkbox {
  cursor: pointer;
}

/* Popup styles */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.popup-content p {
  font-size: 13px;
  line-height: 20px;
  margin: 0;
  color: #333333;
}

.hidden {
  display: none; /* Hide the popup by default */
}

.close-button {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #013c57;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.close-button:hover {
  background-color: #005f7a;
}

@media (max-width: 600px) {
  h1 {
    font-size: 30px;
  }
  h3 {
    font-size: 15px;
    font-weight: bold;
  }
  .logo {
    margin-left: 10px;
  }
  .logo img {
    width: 150px;
  }
  .button {
    border-radius: 15px;
    font-size: 16px;
    line-height: 24px;
    padding: 12px 34px;
  }
  .main-wrapper p,
  label {
    font-size: 13px;
    line-height: 20px;
  }
}
