#topic, #topic2 {
  text-align: center;
  color: white;
  background-color: #022650;
  border-radius: 10px;
  width: 90%; /* Better for responsiveness */
  max-width: 100%px;
  margin: 20px auto;
  padding: 10px 20px;
  box-sizing: border-box; /* Prevents overflow due to padding */
}

/* Specific styles */
#topic2 {
  box-shadow: 0 0 20px #dd8512;
  animation: glow 2s infinite;
}

/* Responsive styles for smaller screens */
@media (max-width: 480px) {
  #topic, #topic2 {
    padding: 8px 10px;
     font-size: 1rem;
    width: 95%;
  }
}


    @keyframes glow {
      0% {
        box-shadow: 0 0 5px #dd8512;
      }
      50% {
        box-shadow: 0 0 20px #dd8512, 0 0 30px #dd8512;
      }
      100% {
        box-shadow: 0 0 5px #dd8512;
      }
    }

    select {
      padding: 10px;
      font-size: 16px;
    }

    .info-box {
      width: 400px;
      margin: 30px auto;
      padding: 20px;
      border: 2px solid #ccc;
      border-radius: 10px;
      background-color: #f9f9f9;
      text-align: left;
      min-height: 150px;
    }

    .info-box h3 {
      margin-top: 0;
      text-align: center;
    }
#whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 999;
  width: 60px;
  height: 60px;
}

#whatsapp-button img {
  width: 30px;
  height: 30px;
}

#whatsapp-button span {
  font-size: 0.7rem;
  color: #25D366;
  margin-top: 2px;
  display: none; /* Hide the label on mobile if needed */
}

@media (min-width: 768px) {
  #whatsapp-button {
    width: auto;
    height: auto;
    border-radius: 8px;
    flex-direction: row;
    gap: 8px;
    padding: 8px 12px;
  }

  #whatsapp-button span {
    display: inline;
  }
}


  .equipment-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #f7f4f4;
  }

  .equipment-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .equipment-list li::before {
    /* content: "✅"; */
    font-size: 1.2rem;
    flex-shrink: 0;
    color: #2ecc71; /* You can change to your brand color */
  }

  /* Mobile-friendly font scaling */
  @media (max-width: 480px) {
    .equipment-list {
      font-size: 0.95rem;
    }

    .equipment-list li::before {
      font-size: 1rem;
    }
  }


    