body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 80%;
  margin: auto;
  max-width: 1200px;
}

header {
  color: white;
  padding: 15px 0;
}

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

nav a {
  color: black;
  margin-left: 15px;
  text-decoration: none;
  font-weight: bold;
}

main {
  flex-grow: 1;
  padding-bottom: 80px;
  overflow-y: auto;
}

.hero {
  text-align: center;
  padding: 50px 20px;
}

.hero h1 {
  font-size: 2.5em;
}

.hero .highlight {
  color: #ffd700;
}

.hero p {
  max-width: 700px;
  margin: auto;
  font-size: 1.2em;
}

.hero-image {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
}

.cta-button {
  background: #ffd700;
  color: #333;
  padding: 15px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
  margin-top: 20px;
  font-size: 1.2em;
}

.benefits,
.how-it-works {
  background: white;
  padding: 50px 20px;
  text-align: center;
}

.benefits h2,
.how-it-works h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.benefits p,
.how-it-works p {
  max-width: 800px;
  margin: auto;
  font-size: 1.1em;
  color: #666;
}

.benefits-grid,
.steps {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.benefit,
.step {
  width: 30%;
  text-align: center;
  padding: 20px;
}

.steps-icons,
.benefit-icons {
  width: 75px;
  height: 75px;
  margin-bottom: 10px;
}

.exclusive-offer {
  background: #f9f9f9;
  padding: 50px 20px;
  text-align: center;
  border-top: 2px solid #119baa;
}

.exclusive-offer h2 {
  color: #119baa;
}

.exclusive-offer p {
  font-size: 1.2em;
}

.hidden {
  display: none;
}

.confirmation {
  background: white;
  padding: 50px 20px;
  text-align: center;
}

.confirmation h1 {
  font-size: 2em;
  color: #119baa;
}

.confirmation p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.login {
  background: white;
  padding: 50px 20px;
  text-align: center;
}

.login form {
  max-width: 400px;
  margin: auto;
  text-align: left;
}

.login label {
  display: block;
  font-weight: bold;
  margin-top: 15px;
}

.login input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.checkbox-container input {
  width: auto;
  margin: 0;
}

.checkbox-container label {
  font-weight: normal;
  white-space: nowrap;
}

#showPW-Label {
  margin-top: 0;
}

.forgot-password {
  display: block;
  margin-top: 10px;
  color: #119baa;
  text-decoration: none;
}

.forgot-password:hover {
  text-decoration: underline;
}

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

.popup-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 50%;
  max-width: 400px;
  position: relative;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

.popup-overlay .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: black;
}

.blur {
  filter: blur(5px);
  pointer-events: none;
}

.contact-person {
  margin-top: 30px;
  text-align: center;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.contact-image-container {
  width: 50%;
  text-align: center;
}

.contact-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
}

.contact-info {
  width: 50%;
  text-align: left;
}

.contact-info p {
  margin: 10px 0;
}

.contact-info a {
  color: #007bff;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.hidden {
  display: none;
}

.popup-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  width: 90%;
  text-align: center;
  position: relative;
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.popup-header h2 {
  margin: 0;
  font-size: 20px;
}

.close-popup {
  cursor: pointer;
  font-size: 24px;
  font-weight: bold;
  background: none;
  border: none;
  color: #333;
}

.close-popup:hover {
  color: red;
}

.popup-body p {
  margin-bottom: 15px;
  text-align: left;
  line-height: 1.5;
}

.popup-footer {
  margin-top: 15px;
}

.popup-footer button {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.popup-footer button:hover {
  background: #0056b3;
}

footer {
  background: #119baa;
  color: white;
  text-align: center;
  padding: 15px 0;
  position: relative;
  width: 100%;
}

footer a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}
