body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5; /* Light Gray */
  color: #333333; /* Dark Gray */
  margin: 0;
  scroll-behavior: smooth;
}

header {
  text-align: center;
  margin-bottom: 20px;
}

h1 {
  margin-bottom: 5px;
}
.label {
  text-align: center;
  font-size: 1.2rem;
}

p {
  font-style: italic;
}

.intro {
  max-width: 800px;
  margin: 10px auto;
  padding: 20px;
  background-color: #ffffff; /* White */
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Box shadow for depth */
}

.intro p {
  margin: 0; /* Remove default paragraph margin */
}

.conversation {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 70px;
}

.message {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  margin-right: 20px;
}

.icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  margin-left: 20px;
}

.message p {
  background-color: #ffffff; /* White */
  padding: 10px;
  border-radius: 10px;
}

/* Styling for regular links */
a {
  color: #007bff; /* Blue color for links */
  text-decoration: none; /* Remove underline by default */
  /* margin-right: 20px; */
}

/* Styling for links when hovered */
a:hover {
  text-decoration: underline; /* Underline when hovered */
}

/* Styling for active links (clicked) */
a:active {
  color: #0056b3; /* Darker blue color for active links */
}

#backToTopButton {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #007bff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 1000;
}
.arrow {
  font-size: 15px;
  font-weight: 900;
  color: #fff;
}

#backToTopButton:hover {
  background-color: #0056b3;
}

footer {
  background-color: #f8f9fa; /* Light gray background */
  padding: 5px;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
}

footer p {
  margin: 5px 0; /* Add some space above and below paragraphs */
  color: #333333; /* Dark gray text color */
  font-size: 14px; /* Adjust font size */
  text-wrap: wrap;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  footer p {
    font-size: 10px; /* Reduce font size for smaller screens */
  }
}
