:root {
    --page-bg: #1A0A0A;
    --font-family-default: 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  }

  /* Set Tajawal as default font for entire site */
  * {
    font-family: var(--font-family-default);
  }

  body {
    font-family: var(--font-family-default);
  }

  /* .page-bg {
    background: #1A0A0A;
  } */

  .sky-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
      0 30px 80px rgba(139, 26, 26, 0.5),
      0 1px 0 rgba(255, 255, 255, 0.1) inset;
    background: linear-gradient(to right, #8B1A1A, #1A0A0A);
  }

  /* inner border (double-frame look) */
  .sky-card::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    pointer-events: none;
  }

  /* subtle star field + vignette */
  .sky-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(2px 2px at 18% 22%, rgba(255, 255, 255, 0.25) 45%, transparent 55%),
      radial-gradient(1px 1px at 62% 18%, rgba(255, 255, 255, 0.20) 45%, transparent 55%),
      radial-gradient(1px 1px at 78% 33%, rgba(255, 255, 255, 0.18) 45%, transparent 55%),
      radial-gradient(1.5px 1.5px at 30% 38%, rgba(255, 255, 255, 0.15) 45%, transparent 55%),
      radial-gradient(1px 1px at 48% 46%, rgba(255, 255, 255, 0.12) 45%, transparent 55%),
      radial-gradient(1px 1px at 86% 14%, rgba(255, 255, 255, 0.12) 45%, transparent 55%),
      radial-gradient(900px 520px at 50% 12%, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 65%),
      radial-gradient(1200px 680px at 50% 0%, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0) 55%);
    mix-blend-mode: overlay;
    opacity: 0.85;
  }

  .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 150ms ease, opacity 150ms ease;
  }
  .nav-link:hover {
    color: rgba(255, 255, 255, 0.95);
  }
  .nav-link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
    color: rgba(255, 255, 255, 0.95);
  }

  .btn-primary,
  .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease, color 150ms ease, box-shadow 150ms ease;
  }

  .btn-primary {
    background: rgba(0, 0, 0, 0.78);
    color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.20);
  }
  .btn-primary:hover {
    transform: translateY(-1px);
    background: rgba(0, 0, 0, 0.85);
  }

  .btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
  }
  .btn-ghost:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.12);
  }
  .btn-ghost:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.12);
  }

  .collab-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    letter-spacing: 0.15em;
  }

  .arrow-down {
    animation: bounce-down 1.5s ease-in-out infinite;
  }

  @keyframes bounce-down {
    0%, 100% {
      transform: translateY(0);
      opacity: 0.8;
    }
    50% {
      transform: translateY(4px);
      opacity: 1;
    }
  }

  .logo-pill {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    width: 100%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .logos-scroll-inner {
    display: flex;
    will-change: transform;
  }

  .logos-scroll-inner img {
    height: 48px !important;
    width: 48px !important;
    max-width: 48px !important;
    max-height: 48px !important;
    object-fit: contain;
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 0.8;
  }

  /* Logos scroll animation */
  .logos-scroll-container {
    width: 100%;
    position: relative;
    padding: 24px 0;
  }

  .logos-scroll {
    display: flex;
    animation: scroll-right-to-left 30s linear infinite;
    width: fit-content;
  }

  .logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
  }

  .logo-item img {
    filter: grayscale(100%) brightness(0) invert(1);
    transition: opacity 0.3s ease;
  }

  .logo-item:hover img {
    opacity: 1 !important;
  }

  /* Animation will be generated dynamically by JavaScript */

  /* Bootstrap-like Grid System */
  .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }

  @media (min-width: 576px) {
    .container {
      max-width: 540px;
    }
  }

  @media (min-width: 768px) {
    .container {
      max-width: 720px;
    }
  }

  @media (min-width: 992px) {
    .container {
      max-width: 960px;
    }
  }

  @media (min-width: 1200px) {
    .container {
      max-width: 1140px;
    }
  }

  @media (min-width: 1400px) {
    .container {
      max-width: 1320px;
    }
  }

  .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }

  .col-lg-5,
  .col-lg-7 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  @media (min-width: 992px) {
    .col-lg-5 {
      flex: 0 0 41.666667%;
      max-width: 41.666667%;
    }

    .col-lg-7 {
      flex: 0 0 58.333333%;
      max-width: 58.333333%;
    }
  }

  .align-items-center {
    align-items: center !important;
  }

  .mb-4 {
    margin-bottom: 1.5rem !important;
  }

  @media (min-width: 992px) {
    .mb-lg-0 {
      margin-bottom: 0 !important;
    }
  }

  /* Modern Section Styles */
/* Restaurant Spotlight Section - Complex styles only */
.restaurant-pictures {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
}

.restaurant-picture-wrapper:first-child {
    grid-column: 1;
    grid-row: 1 / 3;
}

.restaurant-picture-wrapper:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    position: relative;
}

.restaurant-picture-wrapper:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    position: absolute;
    bottom: 20px;
    left: -25%;
    width: 80%;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .restaurant-picture-wrapper:nth-child(3) {
        position: static;
        width: 100%;
        left: auto;
        bottom: auto;
        box-shadow: none;
    }
}

.restaurant-picture-wrapper:hover .restaurant-picture-img {
    transform: scale(1.05);
}

.restaurant-picture-wrapper:focus-visible {
    outline: 3px solid rgba(0,0,0,0.5);
    outline-offset: 2px;
}

/* Responsive styles - Mobile */
@media (max-width: 768px) {
    .restaurant-spotlight {
        padding: 60px 16px;
    }

    .restaurant-pictures {
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        gap: 8px !important;
        padding-bottom: 20px !important;
    }

    .restaurant-picture-wrapper {
        padding: 8px !important;
    }

    .restaurant-picture-wrapper:nth-child(3) {
        bottom: 10px !important;
        left: -20% !important;
        width: 75% !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15) !important;
    }
}

/* Responsive styles - Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .restaurant-pictures {
        gap: 12px;
    }
}

  /* Section Divider - Applied to all sections */
  .section-divider,
  .creative-about-section,
  section {
    position: relative;
  }

  .section-divider::after,
  .creative-about-section::after,
  section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #8B1A1A 50%, transparent 100%);
    border-radius: 1px;
    opacity: 0.6;
  }

  /* Exclude specific sections if needed */
  section.hero-section::after,
  section:last-child::after {
    display: none;
  }

  .creative-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
  }

  .creative-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) opacity(0.6);
    border-radius: 16px;
  }

  .creative-content {
    padding: 20px 0;
  }

  .content-text {
    direction: rtl;
    text-align: right;
  }

  .content-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #1a1a1a;
  }

  .content-text p strong {
    font-weight: 600;
  }

  .content-text p:last-child {
    margin-bottom: 0;
  }

  /* Responsive Design */
  @media (max-width: 991px) {
    .modern-section {
      padding: 60px 0;
    }

    .content-text p {
      font-size: 15px;
      margin-bottom: 18px;
    }
  }

  /* Second Secret Section - Simple Frame Effect */
  .second-secret-image-wrapper {
    position: relative;
    padding: 16px;
    background: #dc2626;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  .second-secret-image-wrapper img {
    position: relative;
    z-index: 1;
    border-radius: 8px;
    display: block;
    width: 100%;
    height: auto;
  }

  @media (max-width: 768px) {
    .second-secret-image-wrapper {
      padding: 12px;
    }
  }

  /* Membership Section Styles */
  .membership-banner-image {
      aspect-ratio: 2/1;
      width: 100%;
      height: auto !important;
  }

  @media (min-width: 640px) {
      .membership-banner-image {
          aspect-ratio: 2.5/1;
      }
  }

  @media (min-width: 768px) {
      .membership-banner-image {
          aspect-ratio: 3.2/1;
      }
  }

  .membership-content {
      box-shadow: 0 10px 50px rgba(0, 0, 0, 0.05);
  }

  .membership-card {
      position: relative;
      overflow: hidden;
      min-height: 60px;
  }

  /* Make the last item centered if odd number of items */
  @media (min-width: 640px) {
      .membership-card:last-child:nth-child(odd) {
          grid-column: 1 / -1;
          max-width: 600px;
          margin-left: auto;
          margin-right: auto;
          width: 100%;
          justify-content: center;
      }
  }

  .membership-card:hover {
      border-color: #fee2e2;
      transform: translateY(-2px);
  }

  /* Responsive adjustments for membership section */
  @media (max-width: 640px) {
      .membership-section {
          padding-top: 1.5rem;
          padding-bottom: 1.5rem;
      }

      .membership-card {
          padding: 1rem !important;
      }

      .membership-card span:first-child {
          font-size: 0.9375rem;
      }
  }

  /* About Us Section Styles */
  /* Fade Up Animation for Scroll */
  .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .reveal.active {
      opacity: 1;
      transform: translateY(0);
  }

  /* AOS Animation Support */
  [data-aos] {
      pointer-events: auto;
  }

  .delay-100 {
      transition-delay: 100ms;
  }

  .delay-200 {
      transition-delay: 200ms;
  }

  .delay-300 {
      transition-delay: 300ms;
  }

  .aspect-3\/4 {
      aspect-ratio: 3/4;
  }

  /* Serif Fonts for About Section */
  .font-serif-display {
      font-family: 'Georgia', 'Times New Roman', serif;
      font-weight: 700;
      letter-spacing: -0.02em;
  }

  .font-serif-text {
      font-family: 'Georgia', 'Times New Roman', serif;
      font-weight: 400;
      font-style: italic;
  }



  /* Modern Creative Services Section Styles */
  .services-creative-layout {
      position: relative;
  }

  /* Service Cards Grid */
  .services-cards-grid {
      display: flex;
      flex-direction: column;
      gap: 1rem;
  }

  .service-card-item {
      position: relative;
      cursor: pointer;
  }

  .service-card-inner {
      position: relative;
      background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
      border: 2px solid #e5e7eb;
      border-radius: 16px;
      padding: 1.5rem 1.25rem 1.5rem 4.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      overflow: hidden;
  }

  .service-card-inner::before {
      content: '';
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(to bottom, #8B1A1A, #b91c1c);
      transform: scaleY(0);
      transform-origin: center;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .service-card-item:hover .service-card-inner {
      transform: translateX(-8px);
      border-color: #8B1A1A;
      box-shadow: 0 8px 24px rgba(139, 26, 26, 0.15);
      background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
  }

  .service-card-item:hover .service-card-inner::before {
      transform: scaleY(1);
  }

  .service-card-item:hover .service-number-badge {
      background: linear-gradient(135deg, #8B1A1A, #b91c1c);
      color: white;
      transform: scale(1.1) rotate(-5deg);
      box-shadow: 0 4px 12px rgba(139, 26, 26, 0.3);
  }

  .service-card-item:hover .service-arrow {
      opacity: 1;
      transform: translateX(-4px);
      color: #8B1A1A;
  }

  .service-card-item:hover .service-text {
      color: #8B1A1A;
      font-weight: 600;
  }

  /* Service Number Badge */
  .service-number-badge {
      position: absolute;
      right: 1.25rem;
      top: 50%;
      transform: translateY(-50%);
      width: 3rem;
      height: 3rem;
      background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
      border: 2px solid #d1d5db;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1rem;
      color: #6b7280;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 2;
  }

  /* Service Content */
  .service-content {
      flex: 1;
      z-index: 1;
  }

  .service-text {
      font-size: 1.125rem;
      line-height: 1.6;
      color: #374151;
      transition: all 0.3s ease;
      display: block;
  }

  /* Service Arrow */
  .service-arrow {
      opacity: 0;
      transform: translateX(8px);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      color: #9ca3af;
      flex-shrink: 0;
      z-index: 1;
  }

  /* Services Image Wrapper - Creative Styling */
  .services-image-wrapper {
      position: relative;
      padding: 2rem;
  }

  .services-image-frame {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(139, 26, 26, 0.2);
      transform: rotate(-2deg);
      transition: transform 0.4s ease;
      z-index: 3;
      background: white;
      padding: 8px;
  }

  .services-image-wrapper:hover .services-image-frame {
      transform: rotate(0deg) scale(1.02);
      box-shadow: 0 25px 70px rgba(139, 26, 26, 0.3);
  }

  .services-section-image {
      width: 100%;
      height: auto;
      border-radius: 16px;
      object-fit: cover;
      display: block;
  }

  /* Decorative Elements */
  .services-image-decoration {
      position: absolute;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(139, 26, 26, 0.1), rgba(185, 28, 28, 0.05));
      z-index: 1;
      pointer-events: none;
  }

  .services-image-decoration.decoration-1 {
      width: 200px;
      height: 200px;
      top: -50px;
      right: -50px;
      animation: float 6s ease-in-out infinite;
  }

  .services-image-decoration.decoration-2 {
      width: 150px;
      height: 150px;
      bottom: -30px;
      left: -30px;
      animation: float 8s ease-in-out infinite reverse;
  }

  .services-image-decoration.decoration-3 {
      width: 100px;
      height: 100px;
      top: 50%;
      left: -20px;
      transform: translateY(-50%);
      animation: float 7s ease-in-out infinite;
      animation-delay: 1s;
  }

  @keyframes float {
      0%, 100% {
          transform: translateY(0) translateX(0);
      }
      33% {
          transform: translateY(-20px) translateX(10px);
      }
      66% {
          transform: translateY(10px) translateX(-10px);
      }
  }

  /* Rich Content Fallback */
  .services-rich-content {
      color: #374151;
  }

  .services-rich-content ul {
      list-style: none;
      padding: 0;
  }

  .services-rich-content li {
      padding: 0.75rem 0;
      border-bottom: 1px solid #e5e7eb;
  }

  .services-rich-content li:last-child {
      border-bottom: none;
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
      .services-image-wrapper {
          padding: 1.5rem;
      }

      .services-image-frame {
          transform: rotate(-1deg);
      }

      .service-card-inner {
          padding: 1.25rem 1rem 1.25rem 3.5rem;
      }

      .service-number-badge {
          width: 2.5rem;
          height: 2.5rem;
          font-size: 0.875rem;
          right: 1rem;
      }

      .service-text {
          font-size: 1rem;
      }

      .services-image-decoration {
          display: none;
      }
  }

  @media (max-width: 768px) {
      .services-cards-grid {
          gap: 0.75rem;
      }

      .service-card-inner {
          padding: 1rem 0.875rem 1rem 3rem;
          border-radius: 12px;
      }

      .service-number-badge {
          width: 2.25rem;
          height: 2.25rem;
          font-size: 0.75rem;
      }

      .service-text {
          font-size: 0.9375rem;
      }

      .services-image-wrapper {
          padding: 1rem;
      }

      .services-image-frame {
          transform: rotate(0deg);
          padding: 4px;
      }

      .service-card-item:hover .service-card-inner {
          transform: translateX(-4px);
      }
  }

  /* Legacy support for old services-list class */
  .services-list {
      list-style: none;
      padding: 0;
  }

  .services-list ul {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .services-list li {
      position: relative;
      padding-right: 1.5rem;
      margin-bottom: 1rem;
      color: #333;
  }

  .services-list li::before {
      content: "•";
      position: absolute;
      right: 0;
      color: #8B1A1A;
      font-weight: bold;
      font-size: 1.5rem;
  }

  /* Program Overview Entry Section - Modern Design */
  .program-overview-entry {
      /* background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%); */
      position: relative;
  }

  .program-badge {
      display: inline-block;
      padding: 0.5rem 1.5rem;
      background: linear-gradient(135deg, #8B1A1A, #b91c1c);
      color: white;
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      border-radius: 50px;
      box-shadow: 0 4px 12px rgba(139, 26, 26, 0.2);
  }

  .program-entry-card {
      background: white;
      border-radius: 24px;
      padding: 3rem 2.5rem;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
      border: 1px solid rgba(139, 26, 26, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .program-entry-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(139, 26, 26, 0.1);
  }

  .program-card-content {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
  }

  .program-paragraph-item {
      display: flex;
      gap: 1.5rem;
      align-items: flex-start;
      padding: 1.5rem;
      border-radius: 16px;
      background: linear-gradient(to right, rgba(139, 26, 26, 0.02), transparent);
      border-right: 3px solid transparent;
      transition: all 0.3s ease;
  }

  .program-paragraph-item:hover {
      background: linear-gradient(to right, rgba(139, 26, 26, 0.05), rgba(139, 26, 26, 0.02));
      border-right-color: #8B1A1A;
      transform: translateX(-4px);
  }

  section[dir="rtl"] .program-paragraph-item,
  .program-card-content.text-right .program-paragraph-item {
      flex-direction: row-reverse;
      border-right: none;
      border-left: 3px solid transparent;
      background: linear-gradient(to left, rgba(139, 26, 26, 0.02), transparent);
  }

  section[dir="rtl"] .program-paragraph-item:hover,
  .program-card-content.text-right .program-paragraph-item:hover {
      background: linear-gradient(to left, rgba(139, 26, 26, 0.05), rgba(139, 26, 26, 0.02));
      border-left-color: #8B1A1A;
      border-right-color: transparent;
      transform: translateX(4px);
  }

  .program-icon-wrapper {
      flex-shrink: 0;
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, #8B1A1A, #b91c1c);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(139, 26, 26, 0.25);
      transition: transform 0.3s ease;
  }

  .program-paragraph-item:hover .program-icon-wrapper {
      transform: scale(1.1) rotate(5deg);
  }

  .program-icon {
      width: 28px;
      height: 28px;
      color: white;
      stroke-width: 2.5;
  }

  .program-text-content {
      flex: 1;
  }

  .program-paragraph-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #8B1A1A;
      margin-bottom: 0.75rem;
      line-height: 1.3;
  }

  .program-paragraph-text {
      font-size: 1.0625rem;
      line-height: 1.8;
      color: #4b5563;
      margin: 0;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .program-entry-card {
          padding: 2rem 1.5rem;
          border-radius: 20px;
      }

      .program-card-content {
          gap: 2rem;
      }

      .program-paragraph-item {
          flex-direction: column;
          padding: 1.25rem;
          gap: 1rem;
      }

      [dir="rtl"] .program-paragraph-item {
          flex-direction: column;
      }

      .program-icon-wrapper {
          width: 48px;
          height: 48px;
      }

      .program-icon {
          width: 24px;
          height: 24px;
      }

      .program-paragraph-title {
          font-size: 1.25rem;
      }

      .program-paragraph-text {
          font-size: 1rem;
      }

      .program-overview-entry {
          padding-top: 3rem;
          padding-bottom: 3rem;
      }
  }

  @media (max-width: 640px) {
      .program-entry-card {
          padding: 1.5rem 1.25rem;
      }

      .program-badge {
          padding: 0.4rem 1.25rem;
          font-size: 0.75rem;
      }

      h2.text-4xl {
          font-size: 2rem;
      }

      h2.md\\:text-5xl {
          font-size: 2.5rem;
      }
  }

