
    :root {
      --navy: #17305b;
      --navy-dark: #0f2243;
      --navy-deep: #0d2348;
      --blue: #4aa8e8;
      --blue-2: #56b5f6;
      --light-blue: #eaf5ff;
      --light-gray: #f4f6f8;
      --white: #ffffff;
      --text: #18314f;
      --muted: #6c7a89;
      --border: rgba(23, 48, 91, 0.08);
      --shadow: 0 16px 40px rgba(17, 31, 61, 0.08);
      --shadow-strong: 0 20px 44px rgba(17, 31, 61, 0.14);
      --header-height: 92px;
      --radius: 18px;
      --container: 1280px;
      --ease: cubic-bezier(0.22, 1, 0.36, 1);
      --spotify: #1DB954;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: var(--header-height);
    }

    body {
      font-family: Inter, Arial, Helvetica, sans-serif;
      background: var(--white);
      color: var(--text);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    img,
    video,
    svg {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    .container {
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 28px;
    }

    .section {
      padding: clamp(84px, 9vw, 110px) 0;
      background: var(--white);
    }

    .section.alt {
      background: #fbfcfd;
    }

    .section-header {
      max-width: 760px;
      margin-bottom: 46px;
    }

    .section-header.center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .eyebrow {
      display: inline-block;
      margin-bottom: 16px;
      color: var(--blue);
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .section-title {
      margin-bottom: 16px;
      font-size: clamp(2rem, 3.6vw, 3rem);
      line-height: 1.15;
      font-weight: 800;
    }

    .section-copy {
      color: var(--muted);
      font-size: 1.04rem;
      line-height: 1.75;
    }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1000;
      width: 100%;
      height: var(--header-height);
      background: rgba(23, 48, 91, 0.96);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: box-shadow 0.4s var(--ease);
    }

    .site-header.scrolled {
      box-shadow: 0 14px 34px rgba(7, 17, 40, 0.18);
    }

    .header-inner {
      max-width: var(--container);
      height: 100%;
      margin: 0 auto;
      padding: 0 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .brand-logo,
    .brand-fallback {
      width: 54px;
      height: 54px;
      flex: 0 0 54px;
    }

    .brand-logo {
      object-fit: contain;
    }

    .brand-fallback {
      display: none;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(255,255,255,0.14);
      color: var(--white);
      font-weight: 800;
    }

    .brand-text {
      color: var(--white);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      white-space: nowrap;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 22px;
      margin-left: auto;
    }

    .main-nav a {
      color: rgba(255,255,255,0.9);
      font-size: 0.95rem;
      font-weight: 600;
      transition: opacity 0.25s ease;
    }

    .main-nav a:hover {
      opacity: 0.75;
    }

    .btn,
    .book-btn,
    .primary-btn,
    .secondary-btn,
    .ghost-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      font-weight: 700;
      cursor: pointer;
      transition:
        transform 0.35s var(--ease),
        box-shadow 0.35s var(--ease),
        background 0.35s var(--ease);
    }

    .book-btn {
      min-width: 148px;
      height: 50px;
      padding: 0 18px;
      border: 0;
      background: linear-gradient(135deg, var(--blue), var(--blue-2));
      color: var(--white);
      white-space: nowrap;
    }

    .primary-btn {
      height: 58px;
      padding: 0 28px;
      border: 0;
      background: linear-gradient(135deg, var(--blue), var(--blue-2));
      color: var(--white);
      box-shadow: 0 14px 28px rgba(74, 168, 232, 0.24);
    }

    .secondary-btn {
      height: 58px;
      padding: 0 28px;
      border: 1px solid rgba(255,255,255,0.42);
      background: rgba(255,255,255,0.06);
      color: var(--white);
      backdrop-filter: blur(8px);
    }

    .ghost-btn {
      height: 52px;
      padding: 0 22px;
      border: 1px solid rgba(23, 48, 91, 0.14);
      background: transparent;
      color: var(--navy);
    }

    .primary-btn:hover,
    .secondary-btn:hover,
    .book-btn:hover,
    .ghost-btn:hover {
      transform: translateY(-2px);
    }

    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1200;
      height: 3px;
      width: 0%;
      background: var(--blue);
    }

    .hero-section {
      position: relative;
      min-height: 100svh;
      padding-top: var(--header-height);
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--navy);
    }

    .hero-bg,
    .hero-overlay {
      position: absolute;
      inset: 0;
    }

    .hero-bg {
      z-index: 1;
      background: url('https://ik.imagekit.io/sgwx4owvl/Jevon/banner-bg.JPG') center center / cover no-repeat;
    }

    .hero-overlay {
      z-index: 2;
      background: linear-gradient(90deg, rgba(8,25,54,0.85) 0%, rgba(8,25,54,0.4) 100%);
    }

    .hero-inner {
      position: relative;
      z-index: 10;
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: 50px 36px 0;
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
      align-items: center;
      gap: 40px;
    }

    .hero-text {
      color: var(--white);
    }

    .hero-title {
      margin-bottom: 20px;
      font-size: clamp(2.25rem, 4.4vw, 4rem);
      line-height: 1.1;
      font-weight: 800;
    }

    .hero-subtitle {
      max-width: 700px;
      margin-bottom: 30px;
      font-size: 1.1rem;
      line-height: 1.6;
      opacity: 0.9;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .hero-image {
      align-self: end;
      display: flex;
      align-items: flex-end;
      justify-content: flex-end;
      min-width: 0;
    }

    .hero-image img {
      width: min(100%, 520px);
      max-height: calc(100svh - var(--header-height) - 30px);
      object-fit: contain;
      filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    }

    .about-grid,
    .programs-offers-grid,
    .community-popout-shell,
    .footer-grid {
      display: grid;
      gap: 24px;
    }

    .about-grid {
      grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
      align-items: center;
    }

    .about-image {
      min-height: clamp(320px, 42vw, 520px);
      border-radius: 30px;
      overflow: hidden;
      background: url('https://ik.imagekit.io/sgwx4owvl/Jevon/image2.png') center center / cover no-repeat;
      box-shadow: var(--shadow);
    }

    .about-points,
    .footer-links,
    .social-links {
      list-style: none;
    }

    .about-points li,
    .footer-links li {
      position: relative;
      margin-bottom: 14px;
      padding-left: 18px;
      color: var(--muted);
      line-height: 1.6;
    }

    .about-points li::before,
    .footer-links li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 10px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--blue);
    }

    .brand-logos-section {
      overflow: hidden;
      padding: 90px 0;
      background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    }

    .brand-logos-track {
      width: 100%;
      overflow: hidden;
      position: relative;
    }

    .brand-logos-row {
      display: flex;
      align-items: center;
      gap: clamp(34px, 4vw, 54px);
      width: max-content;
      animation: brandLogosScroll 34s linear infinite;
      will-change: transform;
    }

    .brand-logos-track:hover .brand-logos-row {
      animation-play-state: paused;
    }

    .brand-logo-item {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 54px;
      opacity: 0.9;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .brand-logo-item:hover {
      opacity: 1;
      transform: translateY(-2px);
    }

    .brand-logo-item img {
      max-height: 48px;
      width: auto;
      max-width: 150px;
      object-fit: contain;
    }

    @keyframes brandLogosScroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .video-only-wrap {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      margin-top: 18px;
    }

    .video-frame {
      position: relative;
      width: min(920px, 100%);
      aspect-ratio: 16 / 9;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: var(--shadow);
      background: var(--navy-dark);
    }

    .video-frame video {
      width: 100%;
      height: 100%;
      border: 0;
      object-fit: cover;
    }

    .programs-offers-section {
      background: linear-gradient(180deg, var(--navy-deep) 0%, #0d2245 100%);
      color: var(--white);
    }

    .programs-offers-section .section-copy {
      color: rgba(255,255,255,0.82);
    }

    .programs-offers-grid {
      grid-template-columns: repeat(2, minmax(280px, 1fr));
      max-width: 1020px;
      margin: 0 auto;
      gap: 22px;
    }

    .program-offer-card {
      min-height: 124px;
      padding: 26px 28px;
      display: flex;
      align-items: center;
      gap: 22px;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 26px;
      background: rgba(255,255,255,0.08);
      box-shadow: 0 14px 28px rgba(0,0,0,0.12);
    }

    .program-offer-icon {
      width: 64px;
      height: 64px;
      flex: 0 0 64px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .program-offer-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .program-offer-text h3 {
      margin-bottom: 8px;
      color: var(--white);
      font-size: 1.8rem;
      line-height: 1.15;
      font-weight: 800;
    }

    .program-offer-text p {
      color: rgba(255,255,255,0.82);
      font-size: 1rem;
      line-height: 1.6;
    }

    .community-popout-section {
      padding: 110px 0;
      background: linear-gradient(180deg, var(--navy-deep) 0 38%, #ffffff 38% 100%);
    }

    .community-popout-shell {
      position: relative;
      grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
      align-items: center;
      gap: 28px;
      padding: 70px 56px;
      overflow: visible;
      border: 1px solid rgba(23,48,91,0.08);
      border-radius: 34px;
      background: var(--light-gray);
      box-shadow: var(--shadow-strong);
    }

    .community-popout-content {
      max-width: 620px;
      position: relative;
      z-index: 2;
    }

    .community-popout-pill {
      min-height: 46px;
      padding: 0 22px;
      margin-bottom: 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--blue), var(--blue-2));
      color: var(--white);
      font-size: 0.9rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .community-popout-title {
      margin-bottom: 18px;
      color: #111111;
      font-size: clamp(2.5rem, 5vw, 4.6rem);
      line-height: 0.98;
      font-weight: 900;
      letter-spacing: -0.03em;
    }

    .community-popout-title .accent {
      color: var(--blue);
    }

    .community-popout-copy {
      max-width: 590px;
      margin-bottom: 28px;
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.8;
    }

    .community-popout-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .community-popout-actions .primary-btn,
    .community-popout-actions .ghost-btn {
      min-width: 190px;
    }

    .community-popout-image-wrap {
      position: relative;
      min-height: clamp(320px, 48vw, 620px);
      display: flex;
      align-items: flex-end;
      justify-content: center;
    }

    .community-popout-image {
      position: absolute;
      right: 0;
      bottom: -54px;
      width: min(560px, 100%);
      max-width: none;
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 24px 36px rgba(0,0,0,0.14));
    }

    .photo-carousel-section {
      padding: 24px 0 0;
    }

    .photo-carousel-wrap {
      position: relative;
    }

    .photo-carousel-track {
      display: flex;
      gap: clamp(18px, 2.2vw, 26px);
      overflow-x: auto;
      scroll-behavior: smooth;
      padding: 8px 56px 12px;
      scrollbar-width: none;
    }

    .photo-carousel-track::-webkit-scrollbar {
      display: none;
    }

    .photo-carousel-item {
      flex: 0 0 clamp(270px, 32vw, 420px);
      height: clamp(190px, 22vw, 280px);
      border-radius: 28px;
      overflow: hidden;
      background: #dfe8f2;
      box-shadow: var(--shadow);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .photo-carousel-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.45s ease;
    }

    .photo-carousel-item:hover {
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 20px 46px rgba(17, 31, 61, 0.18);
    }

    .photo-carousel-item:hover img {
      transform: scale(1.06);
    }

    .photo-carousel-arrow {
      position: absolute;
      top: 50%;
      z-index: 5;
      width: 52px;
      height: 52px;
      border: 0;
      border-radius: 50%;
      background: rgba(23, 48, 91, 0.92);
      color: var(--white);
      font-size: 1.5rem;
      font-weight: 800;
      cursor: pointer;
      box-shadow: 0 14px 30px rgba(17, 31, 61, 0.16);
      transform: translateY(-50%);
      transition: background 0.25s ease, transform 0.25s ease;
    }

    .photo-carousel-arrow.left {
      left: 0;
    }

    .photo-carousel-arrow.right {
      right: 0;
    }

    .photo-carousel-arrow:hover {
      background: var(--blue);
    }

    .site-footer {
      padding: 80px 0 30px;
      background: var(--navy-dark);
      color: var(--white);
    }

    .footer-grid {
      grid-template-columns: 1.2fr 0.8fr 0.8fr;
    }

    .footer-title {
      margin-bottom: 14px;
      font-size: 1.25rem;
      line-height: 1.3;
      font-weight: 800;
    }

    .footer-copy,
    .footer-links li,
    .footer-bottom {
      color: rgba(255,255,255,0.74);
    }

    .footer-copy {
      line-height: 1.7;
    }

    .footer-links a,
    .social-links a {
      color: rgba(255,255,255,0.84);
    }

    .footer-links li::before {
      background: var(--blue);
    }

    .social-links {
      display: flex;
      gap: 12px;
      margin-top: 18px;
      flex-wrap: wrap;
    }

    .social-links a {
      min-width: 110px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      background: rgba(255,255,255,0.08);
      transition: background 0.25s ease, transform 0.25s ease;
    }

    .social-links a:hover {
      background: rgba(255,255,255,0.14);
      transform: translateY(-2px);
    }

    .footer-bottom {
      margin-top: 34px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .floating-btn {
      position: fixed;
      right: 24px;
      z-index: 999;
      width: 52px;
      height: 52px;
      border: 0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      box-shadow: 0 16px 34px rgba(17,31,61,0.22);
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
    }

    .floating-btn.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .floating-btn svg {
      width: 28px;
      height: 28px;
      fill: currentColor;
    }

    .spotify-float {
      bottom: 88px;
      background: var(--spotify);
    }

    .back-to-top {
      bottom: 24px;
      background: linear-gradient(135deg, var(--blue), var(--blue-2));
      font-size: 1.1rem;
      font-weight: 800;
    }

    .spotify-popup-overlay {
      position: fixed;
      inset: 0;
      z-index: 2000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      background: rgba(7, 17, 40, 0.42);
    }

    .spotify-popup-overlay.show {
      display: flex;
    }

    .spotify-popup {
      position: relative;
      width: min(440px, 100%);
      padding: 34px 28px;
      border-radius: 26px;
      background: var(--white);
      text-align: center;
      box-shadow: 0 24px 70px rgba(17,31,61,0.25);
      animation: spotifyPopupIn 0.35s ease;
    }

    .spotify-popup-close {
      position: absolute;
      top: 14px;
      right: 16px;
      width: 34px;
      height: 34px;
      border: 0;
      border-radius: 50%;
      background: #f1f4f7;
      color: var(--navy);
      font-size: 1.4rem;
      line-height: 1;
      cursor: pointer;
    }

    .spotify-popup-icon {
      width: 68px;
      height: 68px;
      margin: 0 auto 18px;
      border-radius: 50%;
      background: var(--spotify);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .spotify-popup-icon svg {
      width: 38px;
      height: 38px;
      fill: currentColor;
    }

    .spotify-popup h3 {
      margin-bottom: 10px;
      color: var(--navy);
      font-size: 1.55rem;
      font-weight: 800;
    }

    .spotify-popup p {
      margin-bottom: 22px;
      color: var(--muted);
      line-height: 1.6;
    }

    .spotify-popup-btn {
      min-height: 52px;
      padding: 0 24px;
      border-radius: 14px;
      background: var(--spotify);
      color: var(--white);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      box-shadow: 0 14px 28px rgba(29,185,84,0.22);
    }

    @keyframes spotifyPopupIn {
      from {
        opacity: 0;
        transform: translateY(16px) scale(0.96);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @media (max-width: 1180px) {
      .main-nav {
        display: none;
      }

      .programs-offers-grid,
      .about-grid,
      .community-popout-shell,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .programs-offers-grid {
        max-width: 760px;
      }
    }

    @media (max-width: 1024px) {
      .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 58px;
      }

      .hero-text {
        margin: 0 auto;
      }

      .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-buttons {
        justify-content: center;
      }

      .hero-image {
        justify-content: center;
      }

      .hero-image img {
        width: min(420px, 82vw);
        max-height: none;
      }

      .community-popout-shell {
        padding: 44px 32px 24px;
      }

      .community-popout-image-wrap {
        min-height: 420px;
      }

      .community-popout-image {
        position: relative;
        right: auto;
        bottom: auto;
        width: min(420px, 100%);
      }
    }

    @media (max-width: 768px) {
      :root {
        --header-height: 80px;
      }

      .container {
        padding: 0 18px;
      }

      .header-inner {
        padding: 0 18px;
      }

      .brand-logo,
      .brand-fallback {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
      }

      .brand-text {
        font-size: 0.78rem;
        letter-spacing: 0.06em;
      }

      .book-btn {
        min-width: auto;
        height: 44px;
        padding: 0 14px;
        font-size: 0.82rem;
      }

      .hero-section {
        min-height: auto;
        padding: 118px 0 0;
      }

      .hero-inner {
        padding: 0 18px;
        gap: 26px;
      }

      .hero-title {
        font-size: 2.2rem;
      }

      .hero-subtitle {
        font-size: 1rem;
      }

      .primary-btn,
      .secondary-btn,
      .ghost-btn {
        width: 100%;
        min-width: 0;
        height: 54px;
        font-size: 0.92rem;
      }

      .hero-buttons {
        width: 100%;
      }

      .about-image {
        min-height: 320px;
        border-radius: 24px;
      }

      .program-offer-card {
        padding: 22px 20px;
        border-radius: 22px;
        gap: 16px;
        align-items: flex-start;
      }

      .program-offer-icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
      }

      .program-offer-text h3 {
        font-size: 1.3rem;
      }

      .community-popout-section {
        padding: 90px 0 60px;
      }

      .community-popout-shell {
        padding: 34px 22px 18px;
        border-radius: 26px;
      }

      .community-popout-title {
        font-size: 2.7rem;
        line-height: 1;
      }

      .community-popout-copy {
        font-size: 0.98rem;
        line-height: 1.7;
      }

      .community-popout-actions .primary-btn,
      .community-popout-actions .ghost-btn {
        width: 100%;
      }

      .community-popout-image-wrap {
        min-height: 300px;
      }

      .community-popout-image {
        width: min(320px, 100%);
      }

      .photo-carousel-track {
        padding: 8px 44px 10px;
      }

      .photo-carousel-item {
        border-radius: 22px;
      }

      .photo-carousel-arrow {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
      }

      .floating-btn {
        right: 18px;
        width: 48px;
        height: 48px;
      }

      .spotify-float {
        bottom: 82px;
      }

      .back-to-top {
        bottom: 22px;
      }

      .floating-btn svg {
        width: 25px;
        height: 25px;
      }

      .spotify-popup {
        padding: 32px 22px;
        border-radius: 22px;
      }

      .footer-bottom {
        align-items: flex-start;
      }
    }

    @media (max-width: 460px) {
      .brand-text {
        max-width: 118px;
        white-space: normal;
        line-height: 1.15;
      }

      .book-btn {
        font-size: 0.75rem;
      }

      .hero-title {
        font-size: 1.95rem;
      }

      .community-popout-title {
        font-size: 2.35rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
      }



      /* =========================================
   COURSE PAGE STYLES
   ========================================= */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 900px; /* Keeps the two cards centered and well-sized */
  margin: 0 auto;
}

.course-card {
  background: var(--white, #ffffff);
  border-radius: var(--radius, 12px);
  overflow: hidden;
  box-shadow: var(--shadow, 0 8px 30px rgba(0,0,0,0.08));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border, #eaeaea);
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong, 0 16px 40px rgba(0,0,0,0.12));
}

.course-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--navy-dark, #0f2243);
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 0.9;
}

.course-card:hover .course-image img {
  transform: scale(1.05);
  opacity: 1;
}

.course-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: var(--white, #ffffff);
}

.course-title {
  font-size: 1.5rem;
  color: var(--navy, #17305b);
  margin-bottom: 20px;
  font-weight: 700;
}

.course-action {
  margin-top: auto;
  color: var(--blue, #4aa8e8);
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.course-action::after {
  content: '→';
  transition: transform 0.2s ease;
}

.course-card:hover .course-action::after {
  transform: translateX(6px);
}
    }
