.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: #294855;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  color: white; /* 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;
}

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

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

.hero-blue {
  background-image: url('../images/schulkinstech_bg.webp');
  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: #244e5e;
  padding: 0 50px;
}

.text-side {
  flex: 1;
  /* color | offset-x | offset-y | blur-radius */
  text-shadow: rgb(0, 0, 0) 1px 0 10px,
  rgb(0, 0, 0) 1px 0 10px,
  rgb(0, 0, 0) 1px 0 10px,
  rgb(0, 0, 0) 1px 0 10px,
  rgb(0, 0, 0) 1px 0 10px;
}

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

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

.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; 

}

html, body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  background-color: #000; /* Ensures that any extra space is black */
}

/* 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;
  color: #ffffff;
}