.modal-content {
    border-radius: 1.5rem;
    overflow: hidden;
    animation: fadeInDown 1s ease;
  }

  .btn-forest {
    background-color: #228B22;
    color: white;
  }

  .btn-forest:hover {
    background-color: #1e7a1e;
  }

  .btn-animated {
    animation: pulse 2s infinite;
  }

  .bg-dark-blue {
    background-color: #0b3a6c;
  }

  .text-forest {
    color: #228B22;
  }

  .text-dark-blue {
    color: #0d1b2a;
  }

  @media (max-width: 576px) {
    .modal-body {
      padding: 1.5rem;
    }
  }