.main-header {
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 60px;
  top: 0;
  left: 0; /* Ensure the header starts from the left edge */
  padding: 10px 25px; /* Adjusted padding for a balanced look */
  display: flex;
  align-items: center;
  justify-content: start; /* Align items to the start of the header */
  gap: 16px;
  background-color: #01b0f4;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  color: black; /* Assuming a light logo/text for contrast */
}

.logo {
  height: 48px; /* Adjust based on your logo's aspect ratio */
}

.main-content {
  max-width: 600px; /* Adjust based on your preference */
  margin: 100px auto 0; /* Top margin equals header height plus some space */
  padding: 20px;
  box-sizing: border-box;
  background-color: white;
}

.secondary-content {
  background-color: #b3e2f4;
}

.success-green {
  color: #408b3f;
}

p {
  font-family: "Hanken Grotesk", sans-serif;
  
}

button {
  background-color: #01b0f4; 
  border: none;
  color: rgb(0, 0, 0);
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 12px;
}

button:hover {
  background-color: #b3e2f4; 

}

.hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;

}

.badge {
  position: fixed;
  top: 10px; /* Adjust as needed */
  right: 10px; /* Adjust as needed */
  z-index: 1000; /* Ensure it stays above other content */
}

.badge-image {
  height: 60px; /* Adjust the height as needed */
  width: auto; /* Maintain aspect ratio */
}

.hero-blue {
  background-image: url('../images/purple_blue_waves.svg');
  background-size: cover; /* Cover ensures the background image covers the entire section */
  background-position: center; /* Centers the background image */
  background-repeat: no-repeat; /* Prevents repeating the background */
  height: auto; /* Adjusts height dynamically based on content */
  /*height: 600px;*/
  background-color: #b3e2f4;  
  color: white;
  padding: 0 50px;
}

.hero-white {
  height: 500px;
  background-color: #fff;
  color: #333;
  padding: 0 50px;
}

.content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.text-side {
  flex: 1;
  padding-right: 50px; /* Separation from the image */
}

.image-side {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video {
  display: block;
  width: 100%;
  margin-bottom: 20px; /* Adjust the margin as needed */
  max-width: 1200px;
}

ul {
  list-style-type: none; /* Remove default list styling */
  padding: 0;
}

li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

li img {
  margin-right: 10px; /* Space between check icon and text */
}

img {
  display: block;
  max-width: 100%; /* Ensure images are not larger than their container */
  height: auto;
}

.footer1 {
  background-color: #ffffff;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.bignumber {
  text-align: center;
  font-size: 40px;
}

/* global style */
* {
  font-family: "Comfortaa", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden; /* Prevents horizontal scroll */
}