﻿
        body { background:#f8f9fa; }
        .hero { background:#003366; color:white; padding:60px 0; }
        .hero h1 { font-size:2.5rem; }
        .section-title { font-weight:600; margin-bottom:1rem; color:#003366; }
        .booking-box { background:white; border-radius:8px; padding:25px; box-shadow:0 2px 10px rgba(0,0,0,0.08); }
        
 

@media (max-width: 767px) {
  .hero img { margin-top: 1rem; }
}

.hero {
  background: linear-gradient(135deg, #003366 0%, #005599 100%);
  color: #fff;
  padding: 60px 0;
}
ul li {
    margin-bottom: 0.5rem;
}


.form-check-input { width:1.2rem; height:1.2rem; border:2px solid #6c757d; cursor:pointer; }
        .form-check-input:checked { background-color:#dc3545; border-color:#dc3545; }
        .form-check-input:focus { box-shadow:none; }
        .form-floating > textarea.form-control.textarea-lg { height:120px; min-height:120px; }

        .textarea-md { height:90px; min-height:90px; }


  .edi-section {
    padding: 10px 0;
    max-width: 900px;
    margin: 0 auto;
  }

  .edi-section h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    font-weight: 600;
  }

  .edi-section ul {
    margin-left: 0;
    padding-left: 20px;
  }

  .edi-section li {
    margin-bottom: 8px;
  }

  .edi-highlight {
    background: #eef4ff;
    border-left: 4px solid #3f6ad8;
    padding: 20px;
    margin: 30px 0;
    border-radius: 6px;
  }

div.edi-highlight ul li {
    margin-bottom: 0 !important;
}




/* ---------------------------------------------------------
   RELATED / COURSE CHOOSER CARDS
   --------------------------------------------------------- */

.course-choice-card {
    position: relative;
    border: 1px solid #e5e7eb !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

/* Clickable alternative courses */
.course-choice-card:not(.course-choice-current):hover {
    transform: translateY(-3px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .12) !important;
    border-color: #0d6efd !important;
}

/* Current course */
.course-choice-current {
    border: 2px solid #0d6efd !important;
    background-color: #f8fbff;
}

/* Course title links */
.course-choice-card .course-choice-link {
    color: #212529;
    text-decoration: none;
}

.course-choice-card .course-choice-link:hover,
.course-choice-card .course-choice-link:focus {
    color: #0d6efd;
}

/* Small navigation/status line */
.course-choice-action {
    font-size: 0.875rem;
    margin-top: 1rem;
    margin-bottom: 0;
    color: #0d6efd;
}

/* Make keyboard focus obvious */
.course-choice-link:focus-visible {
    outline: 3px solid rgba(13, 110, 253, .35);
    outline-offset: 3px;
    border-radius: 2px;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .course-choice-card {
        transition: none;
    }

    .course-choice-card:not(.course-choice-current):hover {
        transform: none;
    }
}


