/* ==========================================================================
   1. GLOBAL THEME AND BASE SETUP
   ========================================================================== */
:root {
    --primary-color: #006C49; /* Changed dynamically to match your brand green */
    --brand-green: #006C49;
    --brand-green-light: #00855a;
    --brand-yellow: #f8e027;
    --bg-light: #f6f8f5;
    --text-dark: #222222;
    --muted: #666666;
    --border-color: #e3e8e1;
    --orange: #d97706;
    --header-offset: 120px;
}
html,body{
    overflow-x: clip;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

/* Structural Layout Components */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    scroll-margin-top: var(--header-offset);
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    background-color: var(--brand-green);
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease, padding 0.3s ease, background-color 0.3s ease;
    width: 100%;
    padding: 16px 0;
}

.site-header.shrink {
    opacity: 0.75;
    transform: translateY(-1px);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 120px;
    transition: min-height 0.3s ease, padding 0.3s ease;
}

.site-header.shrink .header-flex {
    min-height: 80px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
}

.brand-logo {
    width: 192px;
    max-width: 100%;
    height: auto;
    transition: width 0.3s ease;
}

.site-header.shrink .brand-logo {
    width: 96px;
}

.logo-text {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 24px;
}

.main-nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: color 0.25s ease, font-size 0.25s ease;
}

/* Desktop: larger menu when at top; shrinks with header */
.site-header .main-nav a {
    font-size: 1.2rem; /* larger in home position */
}
.site-header.shrink .main-nav a {
    font-size: 1rem; /* smaller when header is shrunk */
}

.main-nav a:hover,
.main-nav a:focus {
    color: var(--brand-yellow);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 12px;
}

.nav-toggle .hamburger,
.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: relative;
}

.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.nav-toggle .hamburger::before {
    top: -8px;
}

.nav-toggle .hamburger::after {
    top: 8px;
}

.nav-close {
    display: none;
}

@media (max-width: 860px) {
    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .main-nav {
        position: absolute;
        inset: 0 0 0 auto;
        width: min(320px, calc(100% - 40px));
        max-width: 100%;
        height: 100svh;
        max-height: 100svh;
        padding: 110px 24px 24px;
        background: rgba(0, 84, 43, 0.98);
        transform: translateX(110%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s ease, opacity 0.35s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
        display: flex;
        justify-content: center;
        z-index: 1100;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .main-nav.open {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-close {
        position: absolute;
        top: 16px;
        right: 16px;
        background: transparent;
        border: none;
        font-size: 28px;
        color: #ffffff;
        cursor: pointer;
        line-height: 1;
        padding: 0;
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 22px;
        align-items: flex-start;
    }

    .main-nav a {
        font-size: 1.05rem;
    }

    /* body.nav-open {
        overflow: hidden;
    } */
}

html {
    scroll-behavior: smooth;
}

/* ==========================================================================
   3. HERO BANNER
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 133, 90, 0.3);
    z-index: 2;
}

.hero-section .container {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.hero-content {
    color: #ffffff;
    text-shadow: 8px 8px 8px rgba(43, 42, 42, 0.829);
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    max-width: 700px;
    color: #ffffff;
    text-shadow: 8px 8px 8px rgba(29, 29, 29, 0.918);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--brand-green);
    color: #ffffff;
    border-radius: 14px;
}

.btn-primary:hover {
    background-color: var(--brand-green-light);
}

/* .learner-insurance-banner {
    position: relative;
    background-image: url("images/stock/learner_banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    color: #ffffff;
} */

/* .learner-insurance-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
}

.learner-insurance-banner .banner-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 22px;
}

.learner-banner-text {
    font-size: clamp(1.4rem, 2vw, 2.2rem);
    font-weight: 800;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.1;
}

.learner-insurance-banner .btn-primary {
    min-width: 200px;
    padding: 14px 26px;
}

@media (max-width: 680px) {
    .learner-insurance-banner {
        padding: 60px 0;
    }

    .learner-banner-text {
        font-size: 1.3rem;
    } */


/* ==========================================================================
   4. DYNAMIC PRICING AND CAROUSEL WIDGET STYLES
   ========================================================================== */
.pricing-section {
    padding: 60px 0;
}

/* Recent Passes carousel */
.recent-passes-section {
    padding: 48px 0;
    background: var(--brand-green);
    color: var(--bg-light);
}

.passes-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.passes-track {
    display: flex;
    gap: 16px;
    transition: transform 0.6s ease;
    will-change: transform;
    overflow: hidden;
}

.passes-viewport {
    overflow: hidden;
}

.pass-item {
    flex: 0 0 auto;
    width: 420px; /* display frame optimized for 420x420 source images */
}

.pass-item img {
    width: 100%;
    aspect-ratio: 1/1;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

@media (max-width: 900px) {
    .pass-item {
        width: min(320px, 55vw);
    }
}

@media (max-width: 480px) {
    .pass-item {
        width: calc(100% - 40px);
    }
}

/* Carousel controls */
.passes-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.08);
    color: var(--bg-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 1200;
}

.passes-prev { left: 12px; }
.passes-next { right: 12px; }

.passes-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 18px;
}

.passes-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgb(102, 102, 102);
    cursor: pointer;
}

.passes-dots .dot.active {
    background: rgba(255,255,255,0.95);
}

.recent-passes-section .section-heading { color: var(--bg-light); }

/* Focused center styling */
.pass-item {
    transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
    opacity: 0.5;
    filter: grayscale(36%) saturate(50%) brightness(0.88);
    transform: scale(0.86);
}

.pass-item.prev,
.pass-item.next {
    opacity: 0.72;
    transform: scale(0.92);
    filter: grayscale(18%) saturate(70%) brightness(0.92);
}

.pass-item.active {
    opacity: 1;
    transform: scale(1.06);
    filter: none;
    z-index: 2;
}

.pass-item img {
    transition: border-radius 0.35s ease, transform 0.35s ease;
}

.pass-item.active img {
    border-radius: 30px;
}

.selector-container {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.toggle-filter {
    background: #e9eeea;
    border-radius: 999px;
    padding: 6px;
    display: flex;
    gap: 6px;
}

.toggle-btn {
    border: none;
    background: transparent;
    padding: 12px 28px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    color: var(--muted);
    transition: 0.25s ease;
}

.toggle-btn.active {
    background: var(--brand-green);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 108, 73, .2);
}

/* Carousel Window and Tracks */
.carousel-view {
    cursor: grab;
    user-select: none;
    overflow: hidden;
    width: 100%;
    position: relative;
    touch-action: pan-y;
}

.carousel-view:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform .45s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
    transform: translate3d(0, 0, 0);
    overflow: hidden;
}

/* Card Visual Layout Structure */
.pricing-card {
    min-width: 300px;
    max-width: 300px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    transition: transform 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.card-ribbon {
    position: absolute;
    top: 16px;
    right: -34px;
    background: var(--orange);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .8px;
    padding: 5px 36px;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.card-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--brand-green);
    margin-bottom: 10px;
    line-height: 1.2;
}

.card-subtitle {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
    min-height: 64px;
    margin-bottom: 24px;
}

.card-price {
    font-size: 58px;
    line-height: 1;
    font-weight: 900;
    color: var(--brand-green);
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.card-price small {
    font-size: 24px;
    vertical-align: top;
}

.hourly-rate-sub {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 12px;
}

.card-card_price {
    display:inline-block;
  background:#fff8eb;
  border:1px solid #ffe1b3;
  color:#a86b00;
  font-size:12px;
  font-weight:700;
  padding:6px 10px;
  border-radius:999px;
  margin-bottom:10px;
  margin-left: auto;  /* Ensures badge structural centering */
  margin-right: auto;
}
.card-transfer_price{
  font-size:14px;
  color:var(--brand-green);
  font-weight:700;
  margin-bottom:22px;
}
.card-car {
    display: inline-block;
    background: #f2f6f2;
    color: var(--brand-green);
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 22px;
}

.book-btn {
    width: 100%;
    border: none;
    background: var(--brand-green);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    padding: 14px 16px;
    border-radius: 14px;
    cursor: pointer;
    transition: .25s ease;
}

.book-btn:hover {
    background: var(--brand-green-light);
    transform: translateY(-1px);
}

/* Dots and Notice Elements */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cfd8d2;
    cursor: pointer;
}

.dot.active {
    background: var(--brand-green);
    transform: scale(1.2);
}

.notice-box {
    margin-top: 34px;
    background: #ffffff;
    border-left: 4px solid var(--brand-green);
    padding: 18px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted);
    box-shadow: 0 4px 18px rgba(0, 0, 0, .03);
}

.notice-box strong {
    color: #222222;
}

/* ==========================================================================
   5. BOTTOM ABOUT SECTION & FOOTER
   ========================================================================== */
.info-section {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.info-grid {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.info-image {
    flex: 1 1 320px;
    max-width: 420px;
}

.info-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.info-copy {
    flex: 1 1 420px;
    text-align: left;
}

.info-copy h2 {
    margin-bottom: 20px;
}

.info-copy p {
    max-width: 600px;
    margin: 0 0 18px 0;
    line-height: 1.8;
}

/* New heading styles for About section */
.info-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-green);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.info-subheading {
    font-size: 1.05rem;
    font-weight: 700;
    color: #233; /* slightly darker than body text for contrast */
    margin-bottom: 20px;
}

/* Reviews section - contrasted on brand green with light text */
.reviews-section {
    background-color: var(--brand-green);
    color: var(--bg-light);
    padding: 60px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 24px;
    align-items: stretch;
    margin-top: 20px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

.review-card {
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    padding: 18px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.review-name {
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--bg-light);
}

.review-stars {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.review-text {
    color: rgba(246,248,245,0.95);
    font-size: 0.98rem;
    line-height: 1.5;
    align-items: center;
}

@media (max-width: 900px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .reviews-grid { grid-template-columns: 1fr; gap: 14px; }
}

.reviews-heading {
    font-size: 2rem;
    font-weight: 800;
    color: #f6f8f5;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

/* General section heading that matches About section styling */
.section-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-green);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

@media (max-width: 860px) {
    .info-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-copy {
        text-align: center;
    }

    .info-copy p {
        margin: 0 auto 18px auto;
    }
}

.site-footer {
    background-color: var(--brand-green);
    color: var(--bg-light);
    padding: 30px 0;
    margin-top: 40px;
    font-size: 0.9rem;
}

/* Forces layout items onto a single horizontal line row */
.footer-inner {
    display: flex;
    flex-direction: row; 
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
}

/* Grants perfectly mirrored widths to all 3 sections */
.footer-col-left,
.footer-brand,
.footer-col-right {
    flex: 1 1 33.333%;
}

/* Explicit alignment controls for each spot */
.footer-col-left {
    text-align: left;
}

.footer-brand {
    text-align: center;
}

.footer-brand p {
    margin: 0;
    line-height: 1.4;
}

.footer-col-right {
    text-align: right;
}

.site-footer a {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* Responsive collapse for small screens */
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .footer-col-left,
    .footer-brand,
    .footer-col-right {
        flex: 1 1 auto;
        text-align: center;
    }
}



/* ==========================================================================
   6. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 768px) {
    .pricing-card {
        min-width: 85vw;
        max-width: 85vw;
    }
    .card-price {
        font-size: 52px;
    }
    .header-flex {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
        gap: 10px;
    }
}
/* Why Choose Us Section Styling */
.why-choose-us {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: sans-serif;
}

.why-choose-us .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.why-choose-us .section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

/* 4-Column Responsive Layout Setup */
.why-choose-us .grid-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* =========================
     Extracted from pricecarousel.html
     ========================= */


/* (Consolidated geochecker styles kept below) */


.why-choose-us .feature-card {
  flex: 1 1 calc(25% - 20px); /* Sets up 4 columns on large screens */
  min-width: 250px; /* Keeps cards readable on smaller viewports */
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

/* Constrains and aligns the image container uniformly */
.why-choose-us .image-container {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}

.why-choose-us .image-container img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain; /* Shows full image without truncation */
}

.why-choose-us .feature-card h3 {
  font-size: 1.25rem;
  margin: 10px 0;
  color: #222;
}

.why-choose-us .feature-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}
.tdt-lookup-container {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        max-width: 480px;
        margin: 20px auto;
        padding: 30px;
        background: #ffffff;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        text-align: center;
        border-top: 5px solid #006C49; 
    }
    .tdt-lookup-container h2 {
        color: #006c49;
        font-size: 24px;
        margin-top: 0;
        margin-bottom: 10px;
        font-weight: 600;
    }
    .tdt-lookup-container p {
        color: #006C49;
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    .tdt-form-group {
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
    }
    #tdt-postcode-input {
        flex: 1;
        padding: 12px 15px;
        font-size: 16px;
        border: 2px solid #e1e5e8;
        border-radius: 6px;
        outline: none;
        text-transform: uppercase;
        transition: border-color 0.2s ease;
    }
    #tdt-postcode-input:focus {
        border-color: #006C49;
    }
    #tdt-lookup-btn {
        background-color: #006C49;
        color: #ffffff;
        border: none;
        padding: 12px 24px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 6px;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }
    #tdt-lookup-btn:hover {
        background-color: #00855a;
    }
    .tdt-result {
        padding: 15px;
        border-radius: 6px;
        font-size: 15px;
        font-weight: 500;
        line-height: 1.4;
        transition: all 0.3s ease;
    }
    .tdt-result.hidden {
        display: none;
    }
    .tdt-result.success {
        background-color: #e6f4ea;
        color: #137333;
        border: 1px solid #ceead6;
    }
    .tdt-result.fail {
        background-color: #fce8e6;
        color: #c5221f;
        border: 1px solid #fad2cf;
    }
    .tdt-result-button {
        margin-top: 16px;
        text-align: center;
    }
    .tdt-result-button .btn {
        display: inline-block;
        margin: 0 auto;
    }
    @media (max-width: 480px) {
        .tdt-form-group {
            flex-direction: column;
        }
        #tdt-lookup-btn {
            width: 100%;
        }
    }
     /* ==========================================================================
   Terms & Conditions Page Styles
   ========================================================================== */
.terms-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333333;
    line-height: 1.6;
}

/* Headings */
.terms-container h3 {
    font-size: 1.5rem;
    color: #111111;
    margin-top: 30px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 8px;
}

/* Paragraphs */
.terms-container p {
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Bullet lists */
.terms-container ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.terms-container li {
    margin-bottom: 8px;
}

/* Bold text accents */
.terms-container strong {
    color: #000000;
    font-weight: 600;
}
.courses-header {
    padding: 60px 0 30px;
    text-align: center;
    background: var(--bg-light);
}

.courses-header__title {
    margin: 0;
    font-size: 2.2rem;
}

.courses-header__subtitle {
    margin-top: 10px;
    opacity: 0.8;
}

.courses-list {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.courses-list__column {
    flex: 1;
    min-width: 280px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.courses-list__column h2 {
    margin-top: 0;
}

.courses-list__column ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

