/* Styles adapted from about.css for consistency */
body {
  font-family: 'Inter', sans-serif;
}

/* Base and Typography from about.css */
.h2-style {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.body-text-secondary {
  margin-top: 1rem;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #8a8a8a;
}

/* Layout from about.css */
.container-main {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5rem;
}

/* Chatbot styles */
#chatbot-modal {
  transition: opacity 0.3s ease-in-out;
}
.chat-bubble-bot,
.chat-bubble-user,
.chat-options {
  animation: slide-up 0.5s ease-out forwards;
  opacity: 0;
}
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.chat-options button {
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.chat-options button:hover {
  transform: translateY(-2px);
}
