#download-banner {
  position: fixed;
  bottom: 0;
  right: 30px;
  width: 380px;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-family: 'Helvetica Neue', sans-serif;
  z-index: 1000;
}

.top-accent {
  background: #E32329;
  height: 10px;
}

.toggle-section {
  background: #000000;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.toggle-title {
  font-size: 16px;
  font-weight: 700;
  color: white;
  flex: 1;
  text-align: center;
}

.text-danger {
  color: #E32329 !important;
}

.arrow-icon {
  width: 25px;
  height: 25px;
  transition: transform 0.3s ease;
  stroke: white;
}

.arrow-up {
  transform: rotate(180deg);
}

#banner-content {
  text-align: center;
  padding: 25px;
  display: block;
}

.guide-description {
  font-size: 15px;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 15px;
  font-weight: 500;
}

.cta-button {
  display: block;
  background-color: #E32329;
  color: white;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  width: 50%;
  margin: 0 auto;
}

.cta-button:hover {
  background-color: #c41d22;
  color: white;
}

@media (max-width: 767px) {
  #download-banner {
    right: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
  }

  .toggle-section {
    padding: 15px;
  }

  #banner-content {
    padding: 20px 15px;
  }
}
