.dynamic-hero-section {
    position: relative;
    padding: 80px 0;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
  }

  .dynamic-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
  }

  .dynamic-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    /* filter: blur(1px);  */

  }

  .dynamic-search-container {
    position: relative;
    max-width: 450px;
  }

  .dynamic-search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
  }

  .dynamic-search-input {
    padding-left: 40px;
    border-radius: 50px 0 0 50px;
    height: 48px;
    border: none;
  }

  .dynamic-search-button {
    /* border-radius: 0 50px 50px 0; */
    background-color: #fd7e14;
    border-color: #fd7e14;
    height: 48px;

  }

  .dynamic-search-button:hover {
    background-color: #e67211;
    border-color: #e67211;
  }

  .dynamic-video-card {
    background-color: white;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .dynamic-video-placeholder {
    position: relative;
    background-color: #f8f9fa;
    border-radius: 8px;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-bottom: 16px; */
  }

  .dynamic-info-card {
    background-color: #1e3a5f;
    color: white;
    border-radius: 8px;
    padding: 24px;
    height: 100%;
  }

  .dynamic-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }

  .dynamic-card-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
  }


  .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
    outline: none;
    border-radius: 10%;
}

.accordion-button {
    /* background-color: #f8f9fa; */
    border: none;
    border-radius: 10%;
    padding: 1rem;
    font-size: 14px;
    font-weight: 600;
}

/* Tablet (md) */
@media (max-width: 991.98px) {
    .dynamic-hero-section {
        padding: 60px 0;
    }
}

/* Mobile (sm) */
@media (max-width: 767.98px) {
    .dynamic-hero-section {
        padding: 40px 0;
    }
}

/* Extra Small (xs) */
@media (max-width: 575.98px) {
    .dynamic-hero-section {
        padding: 30px 0;
    }
}
