.course-main-layout {
    display: flex;
    gap: 2rem;
    flex-wrap: nowrap;
    align-items: flex-start;
    margin: 3rem auto;
    max-width: 100%;
  }
  
  .course-left {
    flex: 1 1 35%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .course-right {
    flex: 1 1 65%;
    background: #0d154d;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
  }
  
  #application-form h3 {
    font-size: 1.5rem;
    color: #fca311;
    border-bottom: 2px solid #fff;
    padding-bottom: 0.5rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    margin-top: 0px;
    padding-top: 0px;
  }
  
  /* Header Area */
  .course-header-area {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 2rem;
    margin: 0rem auto 2rem;
    max-width: 100%;
    align-content: space-between;
    flex-wrap: wrap;
    flex-direction: row-reverse;
  }
  
  .course-header-area .course-image {
    flex: 0 0 45%;
    max-width: 45%;
  }
  
  .course-header-area .course-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  }
  
  .course-header-area .course-header-text {
    flex: 1;
    text-align: left;
    background: #fca31129;
    padding: 10px;
    border-radius: 8px;

  }
  
  .course-header-text .course-title {
    font-size: 2.1rem;
    color: #0d154d;
    font-weight: 900;
    margin-bottom: 0.5rem;
  }
  
  .course-header-text .course-subtitle {
    font-size: 1.3rem;
    color: #141a47e3;
    font-weight: 800;
  }
  
  /* Mobile Responsive */
  @media screen and (max-width: 768px) {
    .course-header-area {
      flex-direction: column;
      text-align: center;
      display: block;
    }
  
    .course-header-area .course-image,
    .course-header-area .course-header-text {
      max-width: 100%;
      flex: 1 1 100%;
    }
  
    .course-header-text .course-title {
      padding-top: 10px;
        font-size: 1.5rem;
    }
  
    .course-header-text .course-subtitle {
      font-size: 0.95rem;
    }
  }
  
  
  /* Collapsibles */
  .course-box-section {
    border-radius: 6px;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .course-box-section summary {
    background: #fca311;
    color: #0d154d;
    font-weight: bold;
    padding: 0.9rem 1.2rem;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: background 0.3s ease;
  }
  
  .course-box-section summary:hover {
    background: #e49100;
  }
  
  .course-box-section summary::-webkit-details-marker {
    display: none;
  }
  
  .course-box {
    background: #1d2040;
    color: #fff;
    padding: 1.2rem 1.5rem;
    border-radius: 0 0 6px 6px;
    margin-top: 0;
  }
  
  .course-box p,
  .course-box li {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.6rem;
  }
  
  .course-box ul {
    padding-left: 1.2rem;
    margin: 0.5rem 0 0;
  }
  
  /* Lecturers */
  .lecturers-list li {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .lecturers-list img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fca311;
  }
  
  /* Application form */
  .course-application-form {
    background: #fff;
    border-radius: 6px;
    /* padding: 1.5rem; */
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.04);
    color: #0d154d;
    
  }

  
  #application-form input  {
    border-color:#e49100;
  }
  
  #application-form #vformgroup1 .vform-main-submit {
    background:#e49100;
    width: 100%;
    border-radius: 10px;
    color: #0d154d;
    font-weight: 900;
    font-size: 1.5rem;
  }

  #application-form #vformgroup1 .vform-main-submit:hover {
    background:#ecba2f;
    width: 100%;
    border-radius: 10px;
  }

  #application-form {
    background: none;
    padding: 0;
  }

  /* Mobile Styles */
  @media screen and (max-width: 991px) {
    .course-main-layout {
      flex-direction: column;
    }
  
    .course-left,
    .course-right {
      flex: 1 1 100%;
      
    }
  
    .course-right {
      order: 1;
    }
  
    .course-left {
      order: 2;
      width: 100%;
    }
  
    .course-header-area {
      text-align: center;
    }
  
    .course-box-section summary {
      font-size: 0.95rem;
    }
  }
  

  
  