body {
  background-color: #fff;
  color: #333;
  font-family: Arial, sans-serif;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 80%;
  padding-top: 20px;
  text-align: center;
}

img {
  display: block;
  margin: 0 auto;
}

h1 {
  text-align: center;
  margin-top: 20px;
  font-weight: normal;
  color: black;
}

.content {
  margin-top: 30px;
  display: none; /* Initially hide the response container */
}

#userInput {
  border: 1px solid black;
}

form {
  text-align: center;
  margin-top: 20px;
}

input[type="text"] {
  width: 80%;
  padding: 10px;
  font-size: 1em;
  border: none;
  border-radius: 5px;
  margin-bottom: 10px;
}

button {
  padding: 10px 20px;
  font-size: 1em;
  color: #fff;
  background-color: #5a87c7;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #476a99;
}

#responseContainer {
  margin-top: 20px;
  padding: 20px;
  background-color: #fff;
  color: #333;
  border-radius: 10px;
}

.loader {
  display: none;
  margin: 20px auto;
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid #e94823;
  animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}

@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(
      50% 50%,
      0 0,
      50% 0%,
      100% 0%,
      100% 0%,
      100% 0%,
      100% 0%
    );
  }
  25% {
    clip-path: polygon(
      50% 50%,
      0 0,
      50% 0%,
      100% 0%,
      100% 100%,
      100% 100%,
      100% 100%
    );
  }
  50% {
    clip-path: polygon(
      50% 50%,
      0 0,
      50% 0%,
      100% 0%,
      100% 100%,
      50% 100%,
      0% 100%
    );
  }
  62.5% {
    clip-path: polygon(
      50% 50%,
      100% 0,
      100% 0%,
      100% 0%,
      100% 100%,
      50% 100%,
      0% 100%
    );
  }
  75% {
    clip-path: polygon(
      50% 50%,
      100% 100%,
      100% 100%,
      100% 100%,
      100% 100%,
      50% 100%,
      0% 100%
    );
  }
  100% {
    clip-path: polygon(
      50% 50%,
      50% 100%,
      50% 100%,
      50% 100%,
      50% 100%,
      50% 100%,
      0% 100%
    );
  }
}

@keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}

.messages-container {
  text-align: center;
}

.messages-container h1 {
  font-weight: normal;
  text-align: center;
}

.top-bar {
  background-color: #f2f2f2; /* Light grey background */
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  text-align: center; /* Centers the image inside the div */
  padding: 10px 0; /* Adds some vertical padding for aesthetics */
}

.top-bar img {
  height: 75px; /* Keeps your image dimensions */
  width: auto; /* Maintains aspect ratio */
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  margin: 0;
  padding: 20px;
}

.main-table {
  width: 90%;
  max-width: 1200px;
  padding: 20px;
  margin: auto;
}

.main-td {
  padding: 20px;
}

/* Intro Area Module */
.intro-area {
  padding: 20px;
  margin-bottom: 30px;
}

.intro-title {
  font-size: 24px;
  font-weight: bold;
  color: black;
  text-align: left;
}

.intro-description {
  font-size: 16px;
  color: black;
  margin: 10px 0;
}

/* 3 Statistics in a Row */
.statistics-row {
  padding: 10px;
  max-width: 1200px;
  border-top: 1px solid #efedec;
  border-bottom: 1px solid #efedec;
  margin: auto;
  text-align: center;
}

.stats-headline {
  font-size: 35px;
  margin-bottom: 40px;
  color: black;
}

.stats-container {
  display: flex;
  justify-content: space-around;
}

.stat {
  width: 30%;
}

.stat-value {
  font-size: 35px;
  font-weight: bold;
  color: black;
}

.stat-description {
  font-size: 16px;
  color: #555;
  margin-top: 10px;
}

.stat-sources {
  font-size: 12px;
  color: #aaa;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* 6-Part HTML Table */
.application-details {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  text-align: center;
}

.details-title {
  font-size: 24px;
  font-weight: bold;
  color: black;
}

.details-description {
  font-size: 16px;
  color: black;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #000;
}

.feature {
  width: 48%;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #efedec;
}

.feature-title {
  font-size: 20px;
  font-weight: bold;
  color: black;
}

.feature-description {
  font-size: 16px;
  color: black;
}

.feature-highlights {
  color: black;
  text-align: left;
  padding-left: 20px;
}

/* 4 Images Area */
.benefits-section {
  padding: 20px;
  margin-bottom: 1px;
}

.benefits-title {
  font-size: 24px;
  font-weight: bold;
  color: black;
}

.benefits-description {
  font-size: 16px;
  color: black;
}

.benefits-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
}

.benefit {
  text-align: center;
  max-width: 200px;
  margin: 10px;
}

.benefit-icon {
  width: 50px;
  height: 50px;
}

.benefit-title {
  font-size: 20px;
  color: black;
}

.benefit-description {
  font-size: 16px;
  color: black;
}

/* Resulting Workflow Module */
.workflow-section {
  padding: 20px;
  margin-bottom: 30px;
}

.workflow-title {
  font-size: 24px;
  font-weight: bold;
  color: black;
}

.workflow-description {
  font-size: 16px;
  color: black;
}

.workflow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

.workflow-step {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.workflow-step-header {
  width: 100%;
  display: flex;
  align-items: center;
}

.workflow-step-icon {
  width: 60px;
  height: 60px;
  margin-right: 20px;
}

.workflow-step-title {
  font-size: 20px;
  color: black;
  margin: 0;
}

.workflow-step-description {
  font-size: 16px;
  color: black;
  margin: 0;
}

.workflow-arrow {
  width: 100px;
  height: 50px;
  margin: 20px auto;
  display: block;
}

/* Frequently Asked Questions */
.faq-container {
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 20px;
  border-radius: 8px;
}

.faq-header {
  font-size: 20px;
  color: black;
  padding-bottom: 10px;
  border-bottom: 2px solid #ccc;
  margin-bottom: 20px;
}

.faq-content {
  font-size: 16px;
  color: #333;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.faq-content:last-child {
  border-bottom: none;
}
