body, html {
  height: 100%;
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Inter';
  /* background: linear-gradient(90deg, #77f1f3, #5f52f0); */
  background-image: url('../start.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.main-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.white-box {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  height: 70%;
  width: 40%;
}

.logo-container {
  text-align: center;
  margin-bottom: 20px;
}

.logo-container img {
  width: 200px;
  height: auto;
}

.pomm-logo {
  text-align: center;
  margin: 10px 20px;  /* Adjust spacing above and below */
}

.pomm-logo img {
  max-width: 130px;  /* Adjust this value to control the image size */
  height: auto;
}

.footer-image {
  margin-top: 100px;  /* Space between buttons and footer */
  text-align: center;
}

.footer-image img {
  max-width: 300px;  /* Adjust this value to control the image size */
  height: auto;
  margin: 0 auto;
}

h1 {
  color: #1b1464;
  font-weight: bold;
  text-align: center;
  margin: 20px 0;
}

h1 i {
  font-size: 0.7em; /* Adjust size as needed */
  color: #1b1464; /* Same color as the text */
  vertical-align: middle;
  margin: 0 2px; /* Add a small space around the icon */
}

.button-container {
  display: flex;
  flex-direction: row;  /* Changed from column to row */
  gap: 20px;
  align-items: flex-start;
  margin-top: 30px;
  justify-content: center;
  margin-bottom: 20px; /* Add space between columns and bottom button */
}

.button-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.start-button {
  padding: 15px 20px;
  font-size: 14px;
  border-radius: 12px;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(90deg, #3fa9f5, #1b1464);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s, filter 0.3s;
  width: 200px;
  height: 20px;
  justify-content: center;
}

.start-button:hover {
  background: #7870d3;
  filter: brightness(1.2);
}

.start-button.outlined {
  background: linear-gradient(90deg, #3fa9f5, #1b1464);
}

.start-button.outlined:hover {
  background: #7870d3;
  filter: brightness(1.2);
}

.start-button i {
  font-size: 20px;
}

.start-button.survey-button {
  background: linear-gradient(90deg, #3fa9f5, #1b1464);
}

.start-button.survey-button:hover {
  background: #7870d3;
  filter: brightness(1.2);
}

.start-button.link-button {
  background: linear-gradient(90deg, #3fa9f5, #1b1464);
}

.start-button.link-button:hover {
  background: #7870d3;
  filter: brightness(1.2);
}

.bottom-button-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;  /* Space between button columns and bottom button */
  width: 100%;
  margin-top: 10px; /* Space between column buttons and this button */
}

.start-button.agents-button {
  background: linear-gradient(90deg, #3fa9f5, #1b1464);
  margin: 0 auto;  /* Centers the button */
}

.start-button.agents-button:hover {
  background: #7870d3;
  filter: brightness(1.2);
}

/* Popup styles */
.disclaimer-popup {
  max-width: 1000px;
  max-height: 80vh;
  overflow-y: auto;
}

.disclaimer-content {
  margin: 20px 0;
  text-align: justify;
}

.disclaimer-content h3 {
  color: #1b1464;
  margin: 15px 0 10px 0;
}

.disclaimer-content p {
  margin-bottom: 10px;
}

.disclaimer-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.decline-button {
  background: #f44336;  /* Red color for decline */
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: filter 0.3s;
}

.decline-button:hover {
  filter: brightness(1.2);
}

.accept-button {
  background: linear-gradient(90deg, #3fa9f5, #1b1464);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: filter 0.3s;
}

.accept-button:hover {
  background: #7870d3;
  filter: brightness(1.2);
}

.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 {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  margin: 20px;
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #1b1464;
  transition: color 0.3s;
}

.popup-close:hover {
  color: #3fa9f5;
}

.popup h2 {
  color: #1b1464;
  margin-bottom: 20px;
  text-align: center;
}

.popup p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.button-description {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.button-description i {
  position: absolute;
  left: 0;
  top: 3px;
  color: #3fa9f5;
}

@media (max-width: 1200px) {
  .button-container {
      flex-direction: column;
  }
  
  .bottom-button-container {
      margin-top: 20px;
  }

  .footer-image {
      margin-top: 30px;
  }

  .white-box {
      width: 90%;
      height: auto;
      padding: 20px;
  }
  
  .button-column {
      width: 100%;
  }

  .popup {
    width: 90%;
    margin: 20px;
    padding: 20px;
}

}