body {
  font-family: "Arial", sans-serif;
  background: #fff;
  margin: 0;
  padding: 0;
}

.container {
  margin: 0 auto;
}

.benefits-header {
  width: 100%;
  background: #fff;
  padding-top: 24px;
}

.header-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.header-logo {
  height: 100px;
  width: auto;
}

.header-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: "Montserrat", Arial, sans-serif;
  color: #1a1a1a;
  font-weight: 700;
  letter-spacing: 2px;
}

.header-title-top {
  font-size: 1.2rem;
  letter-spacing: 0.2em;
}

.header-title-main {
  font-size: 2.5rem;
  letter-spacing: 0.1em;
}

.header-title-bottom {
  font-size: 2rem;
  letter-spacing: 0.1em;
}

.header-divider {
  margin: 24px auto 0 auto;
  width: 95%;
  border: none;
  border-top: 1px solid #eee;
}

.message-container {
  text-align: center;
  padding: 0 10px;
}

.message-container p {
  margin-top: 36px;
  margin-bottom: 36px;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: black;
}

.message-container h2 {
  font-family: "Outfit", Sans-serif;
  font-size: 29px;
  font-weight: 700;
  line-height: 38px;
  padding: 0 80px;
}

.chat-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-bottom: 20px;
}

.chat-container {
  background: white;
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.message {
  display: flex;
  margin-bottom: 15px;
  align-items: flex-end;
}

.bot {
  flex-direction: row;
}

.user {
  flex-direction: row-reverse;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: url("images/jade.jpg") center/cover no-repeat;
  margin: 0 10px;
}

.bubble {
  padding: 10px 14px;
  border-radius: 15px;
  max-width: 75%;
}

.bot .bubble {
  background: #eee;
}

.user .bubble {
  background: #007bff;
  color: white;
}

.status-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.status-icon {
  width: 35px;
  height: auto;
}

.status-text {
  font-size: 1rem;
  color: #333;
  white-space: nowrap;
}

.options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 20px;
  margin-left: 55px;
}

.option-btn {
  background: #002852;
  color: white;
  border: none;
  padding: 18px 55px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 18px;
}

.option-btn:hover {
  background: #0056b3;
}

.user .avatar {
  background: url("jade.jpg") center/cover no-repeat;
}

.call-btn {
  background-color: #28a745;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  display: block;
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.call-btn:hover {
  background-color: #218838;
}

.countdown-timer {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  color: #d9534f;
  font-weight: bold;
}

@media (min-width: 922px) {
  .container {
    max-width: 1240px;
  }
}
