@charset "UTF-8";
/* --- SITE HEADER --- */
.rs-site-header {
  background: transparent;
  min-height: 100px;
  display: flex;
  align-items: center;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 4000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.rs-site-header.is-scrolled {
  background: rgba(80, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  min-height: 70px;
  padding: 5px 0;
  border-bottom-color: rgba(80, 0, 0, 0.6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.rs-site-header.is-scrolled .rs-main-menu {
  top: 70px;
}
.rs-site-header.is-scrolled .rs-main-menu a {
  color: #d0b469;
}
.rs-site-header.is-scrolled .rs-logo img {
  width: 130px;
}
@media (max-width: 480px) {
  .rs-site-header.is-scrolled .rs-logo img {
    width: 100px;
  }
}
.rs-site-header .rs-header-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.rs-site-header {
  /* --- LOGO SECTION --- */
}
.rs-site-header .rs-logo {
  display: flex;
  align-items: center;
  filter: brightness(1.1);
  /*drop-shadow(0 0 2px #000) 
  drop-shadow(0 0 5px #000);*/
  transition: filter 0.3s ease;
}
.rs-site-header .rs-logo:hover {
  filter: brightness(1.3) drop-shadow(0 0 5px #000) drop-shadow(0 0 10px #000);
}
.rs-site-header .rs-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}
.rs-site-header .rs-logo img {
  display: block;
  width: 150px;
  height: auto;
  max-height: 70px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.rs-site-header .rs-logo img:hover {
  transform: scale(1.02);
}
.rs-site-header .rs-logo .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.rs-site-header {
  /* --- NAVIGATION --- */
}
.rs-site-header .rs-nav {
  display: flex;
  align-items: center;
}
.rs-site-header .rs-main-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}
.rs-site-header .rs-main-menu li {
  display: inline-block;
}
.rs-site-header .rs-main-menu a {
  text-decoration: none;
  color: #d0b469;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  transition: color 0.3s ease;
}
.rs-site-header .rs-main-menu a:hover, .rs-site-header .rs-main-menu a:visited, .rs-site-header .rs-main-menu a:active, .rs-site-header .rs-main-menu a:focus {
  color: #d0b469 !important;
}
.rs-site-header .rs-main-menu .current-menu-item a {
  color: #1a1a1a;
}

/* --- MOBILE TOGGLE --- */
#rs-mobile-toggle {
  display: none;
  background: transparent;
  color: #ffffff;
  border: 1px solid #FFF;
  padding: 10px 18px;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: 10px;
  text-transform: uppercase;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 992px) {
  .rs-site-header {
    min-height: 100px;
  }
  .rs-site-header .rs-main-menu {
    display: none !important;
    flex-direction: column;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background: #3d0000;
    padding: 40px 20px;
    gap: 20px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.2);
    text-align: center;
  }
  .rs-site-header.menu-open .rs-main-menu {
    display: flex !important;
  }
  .rs-site-header #rs-mobile-toggle {
    display: block !important;
  }
  .rs-site-header .rs-logo img {
    width: 160px;
  }
}
@media (max-width: 992px) and (max-width: 480px) {
  .rs-site-header .rs-logo img {
    width: 120px;
  }
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  background-color: #EFEFEF;
  overflow-x: hidden;
}

.site-header, .site-footer, .site-main {
  max-width: none !important;
  width: 100%;
  padding-inline-start: 0px !important;
  padding-inline-end: 0px !important;
}

.rs-container {
  max-width: 1200px !important;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- THE DYNAMIC GRID ENGINE --- */
.rs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
  justify-content: center;
  --cols: 3;
}
.rs-grid > * {
  width: calc(100% / var(--cols) - 30px * (var(--cols) - 1) / var(--cols));
  flex: 0 0 auto;
  max-width: 100%;
}
.rs-grid.rs-grid-fill > * {
  flex: 1 1 calc(100% / var(--cols) - 30px);
}
@media (max-width: 1024px) {
  .rs-grid > * {
    width: calc(50% - 15px) !important;
    flex: 0 0 auto !important;
  }
}
@media (max-width: 768px) {
  .rs-grid > .rs-break-768 {
    width: 100% !important;
  }
}
@media (max-width: 480px) {
  .rs-grid > * {
    width: 100% !important;
  }
}

h1, h2, h3, h4,
.site-main h1, .site-main h2, .site-main h3,
.rs-container h1, .rs-container h2 {
  font-family: "Rajdhani", sans-serif;
  letter-spacing: -0.02em;
}

.rs-btn-main, .rs-btn-accent, .rs-btn-outline {
  padding: 12px 30px;
  border-radius: 4px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.rs-btn-main {
  background: #1a1a1a;
  color: #ffffff;
}
.rs-btn-main:hover {
  background: #500000;
  transform: translateY(-2px);
}

.rs-btn-accent {
  background: #FFB400;
  color: #1a1a1a;
}
.rs-btn-accent:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.rs-btn-outline {
  background: transparent;
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
}
.rs-btn-outline:hover {
  background: #1a1a1a;
  color: #ffffff;
}

.rs-form-group {
  margin-bottom: 20px;
}
.rs-form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.rs-input {
  width: 100%;
  padding: 14px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  background: #ffffff !important;
  display: block !important;
  transition: border-color 0.3s ease;
}
.rs-input:focus {
  border-color: #FFB400;
  outline: none;
}
.rs-input.rs-input-error {
  border-color: #d9534f !important;
  background-color: #fff9f9 !important;
}

.rs-error-msg {
  display: block;
  color: #d9534f;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 5px;
}

.rs-select-wrap {
  position: relative;
}
.rs-select-wrap select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  padding-right: 40px;
}
.rs-select-wrap:after {
  content: "▼";
  font-size: 0.7rem;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #500000;
}

.rs-control {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 0.95rem;
}
.rs-control input {
  position: absolute;
  opacity: 0;
}
.rs-control-indicator {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  background: #eee;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  transition: all 0.3s ease;
}
input[type=radio] ~ .rs-control-indicator {
  border-radius: 50%;
}
input:checked ~ .rs-control-indicator {
  background: #FFB400;
  border-color: #FFB400;
}
.rs-control-indicator:after {
  content: "";
  position: absolute;
  display: none;
}
input:checked ~ .rs-control-indicator:after {
  display: block;
}
input[type=checkbox] ~ .rs-control-indicator:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #1a1a1a;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
input[type=radio] ~ .rs-control-indicator:after {
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1a1a1a;
  transform: translate(-50%, -50%);
}

.rs-input-group {
  display: flex;
}
.rs-input-group .rs-input {
  border-radius: 4px 0 0 4px;
}
.rs-input-group .rs-btn-main {
  border-radius: 0 4px 4px 0;
  padding: 14px 30px;
}

.rs-file-upload {
  display: flex;
  align-items: center;
  gap: 15px;
}
.rs-file-upload input[type=file] {
  display: none;
}
.rs-file-upload .rs-file-name {
  font-size: 0.85rem;
  color: #666;
}

.rs-range {
  width: 100%;
  height: 6px;
  background: #eee;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 5px;
  outline: none;
  margin: 15px 0;
}
.rs-range::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  background: #FFB400;
  border: 2px solid #1a1a1a;
  border-radius: 50%;
  cursor: pointer;
}

.rs-breakout {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.rs-cta-breakout {
  background: #500000;
  color: #ffffff;
  padding: 80px 0;
}
.rs-cta-breakout h2 {
  color: #ffffff !important;
}

.rs-service-card {
  background: #fff;
  padding: 40px;
  border-top: 6px solid #FFB400;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.rs-demo-box {
  background: #eee;
  border: 1px dashed #500000;
  padding: 40px 20px;
  text-align: center;
}

.rs-mb-20 {
  margin-bottom: 20px !important;
}

.rs-mb-40 {
  margin-bottom: 40px !important;
}

.rs-mb-60 {
  margin-bottom: 60px !important;
}

.rs-py-80 {
  padding: 80px 0 !important;
}

.rs-text-center {
  text-align: center !important;
}

/* TOAST - Bottom Bar */
.rs-cookie-toast {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1a1a1a;
  color: #ffffff;
  padding: 15px 0;
  z-index: 998;
  border-top: 3px solid #FFB400;
  transform: translateY(105%);
  transition: transform 0.4s ease;
}
.rs-cookie-toast.is-active {
  transform: translateY(0);
}

/* MODAL - Popup Overlay */
.rs-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  /* HIDE INSTRUCTIONS */
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.rs-modal-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.rs-modal-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  max-width: 450px;
  width: 90%;
  color: #1a1a1a;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.rs-link-btn {
  background: none;
  border: none;
  color: #FFB400;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font: inherit;
}

.rs-accordion {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.rs-accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.rs-accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  color: #1a1a1a;
  transition: background 0.3s ease;
}
.rs-accordion-header:hover {
  background: rgba(0, 0, 0, 0.02);
}
.rs-accordion-header .icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
.rs-accordion-header[aria-expanded=true] {
  color: #FFB400;
}
.rs-accordion-header[aria-expanded=true] .icon {
  transform: rotate(45deg);
}
.rs-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #f9f9f9;
}
.rs-accordion-content .inner {
  padding: 0 20px 20px 20px;
}
.rs-accordion-content .inner p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.rs-hero .rs-cta-breakout {
  background: url("https://redskyaviation.co.uk/wp-content/uploads/2025/12/redsky-hero.webp") center no-repeat;
  background-size: cover;
  background-color: #050b12;
  min-height: 100vh;
  max-height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.rs-hero .rs-cta-breakout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 30%), linear-gradient(0deg, rgb(45, 7, 7) 0%, rgba(46, 9, 9, 0.52) 9%, rgba(255, 255, 255, 0) 25%, rgba(169, 183, 194, 0) 100%);
  pointer-events: none;
}
.rs-hero .rs-container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 180px 50px 40px 50px !important;
  position: relative;
  z-index: 10;
}
@media (max-width: 1024px) {
  .rs-hero .rs-container {
    min-height: calc(100vh + 80px);
    padding: 160px 20px 60px 20px !important;
    justify-content: space-between;
  }
}
.rs-hero .hero-tagline {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  display: block;
}
@media (max-width: 1024px) {
  .rs-hero .hero-tagline {
    margin-bottom: 20px;
    font-size: clamp(0.6rem, 2vw, 0.7rem);
  }
}
@media (max-width: 480px) {
  .rs-hero .hero-tagline {
    margin: 3vh 0 0 0;
  }
}
.rs-hero {
  /* --- THE HORIZON SPLIT --- */
}
.rs-hero .hero-horizon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: auto;
  gap: 80px;
}
@media (max-width: 1024px) {
  .rs-hero .hero-horizon-row {
    flex-direction: column;
    text-align: center;
    gap: 0;
    margin-bottom: 0;
    margin-top: 20px;
  }
}
.rs-hero .hero-left {
  flex: 1;
  text-align: left;
}
.rs-hero .hero-left .hero-title {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.8rem, 8vw, 2.8rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff !important;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
  padding: 50px 0 0 0;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .rs-hero .hero-left .hero-title {
    padding: 0;
    white-space: normal;
  }
}
@media (max-width: 992px) {
  .rs-hero .hero-left .hero-title {
    font-size: clamp(1.5rem, 8vw, 3rem) !important;
    line-height: 1;
    margin: 0 !important;
  }
}
.rs-hero .hero-left .hero-title .accent-text {
  color: #FFB400;
  text-shadow: 0 0 20px rgba(26, 26, 26, 0.8), 0 0 40px rgba(26, 26, 26, 0.3);
}
.rs-hero .hero-right {
  flex: 0 0 400px;
  text-align: left;
  border-left: 2px solid #FFB400;
  padding: 0 0 0 25px;
  margin: 50px 0 0 0;
}
@media (max-width: 1024px) {
  .rs-hero .hero-right {
    margin: 10px 0 0 0;
  }
}
@media (max-width: 768px) {
  .rs-hero .hero-right {
    margin: 0;
  }
}
@media (max-width: 480px) {
  .rs-hero .hero-right {
    display: none;
  }
}
.rs-hero .hero-right .hero-description {
  padding: 10px 0 0 0;
  text-transform: uppercase;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 8px rgb(0, 0, 0);
}
@media (max-width: 1024px) {
  .rs-hero .hero-right .hero-description {
    margin: 0 auto;
    max-width: 500px;
    font-size: 0.9rem;
    padding-bottom: 25px;
  }
}
.rs-hero {
  /* --- THE ACTIONS (BOTTOM) --- */
}
.rs-hero .hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .rs-hero .hero-actions {
    margin-top: auto;
    padding-top: 60px;
    padding-bottom: 20px;
    flex-direction: column;
    width: 100%;
  }
}
.rs-hero .hero-actions a {
  min-width: 210px;
  padding: 18px 40px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-align: center;
}
@media (max-width: 1024px) {
  .rs-hero .hero-actions a {
    width: 35%;
  }
}
@media (max-width: 768px) {
  .rs-hero .hero-actions a {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .rs-hero .hero-actions a {
    width: 100%;
  }
}
.rs-hero .hero-actions .rs-btn-accent {
  background: #FFB400;
  color: #000;
  font-weight: 800;
  border: none;
  box-shadow: 0 0 15px #500000;
}
.rs-hero .hero-actions .rs-btn-accent:hover {
  background: #ffffff !important;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 0 30px rgba(255, 180, 0, 0.8);
  color: #000;
}
.rs-hero .hero-actions .rs-btn-outline {
  background: transparent;
  color: #FFB400;
  border: 1px solid #FFB400;
  backdrop-filter: blur(5px);
}
.rs-hero .hero-actions .rs-btn-outline:hover {
  background: #ffffff !important;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 0 30px rgba(255, 180, 0, 0.8);
  color: #000;
}
@media (max-width: 480px) {
  .rs-hero .hero-actions .rs-btn-outline {
    display: none;
  }
}

/* Responsive Horizon Collapse */
@media (max-width: 1024px) {
  .rs-hero .hero-left, .rs-hero .hero-right {
    text-align: center;
    border-left: none;
    padding-left: 0;
    flex: none;
    width: 100%;
  }
}
.rs-why-train {
  position: relative;
  overflow: hidden;
}
.rs-why-train .why-train-bg {
  position: relative;
  background: url("https://i0.wp.com/redskyaviation.co.uk/wp-content/uploads/2025/12/redsky.webp?w=1200&ssl=1") center center no-repeat;
  background-size: cover;
  background-color: #050b12;
}
.rs-why-train .why-train-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgb(45, 7, 7) 0%, rgba(45, 7, 7, 0.7) 10%, rgba(45, 7, 7, 0.3) 25%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0) 60%, rgba(45, 7, 7, 0.3) 75%, rgba(45, 7, 7, 0.7) 90%, rgb(45, 7, 7) 100%);
  z-index: 1;
  pointer-events: none;
}
.rs-why-train .rs-container {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 480px) {
  .rs-why-train .rs-container {
    padding: 20px;
  }
}
.rs-why-train .section-header {
  text-align: center;
}
.rs-why-train .section-header .section-title {
  font-family: "Rajdhani", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #ffffff !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}
.rs-why-train .section-header .section-title .accent-text {
  color: #FFB400;
  text-shadow: 0 0 15px rgba(255, 180, 0, 0.4);
}
.rs-why-train .feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid rgba(255, 180, 0, 0.2);
  padding: 45px 35px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rs-why-train .feature-card .card-icon {
  font-size: 2.2rem;
  color: #FFB400;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 10px rgba(255, 180, 0, 0.3));
  transition: all 0.4s ease;
  display: inline-block;
}
.rs-why-train .feature-card .card-title {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}
.rs-why-train .feature-card .card-desc {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #ffffff;
  opacity: 0.8;
  margin: 0;
}
.rs-why-train .feature-card .card-border-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #FFB400;
  box-shadow: 0 0 15px #FFB400;
  opacity: 0;
  transition: all 0.4s ease;
}
.rs-why-train .feature-card:hover {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 180, 0, 0.6);
  transform: translateY(-8px);
}
.rs-why-train .feature-card:hover .card-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px rgba(255, 180, 0, 0.7));
}
.rs-why-train .feature-card:hover .card-border-glow {
  opacity: 1;
}

#about-instructor .rs-cta-breakout {
  position: relative;
  background-color: #fcfcfc !important;
  padding: 120px 0;
  border-top: 6px solid #500000;
  border-bottom: 6px solid #500000;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(80, 0, 0, 0.07) 0%, rgba(80, 0, 0, 0.02) 15%, transparent 50%, rgba(80, 0, 0, 0.02) 85%, rgba(80, 0, 0, 0.07) 100%);
}
@media (max-width: 992px) {
  #about-instructor .rs-cta-breakout {
    padding: 50px 0;
  }
}
#about-instructor .rs-cta-breakout::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 0, 0, 0.05) 25%, rgba(255, 0, 0, 0.05) 45%, rgba(255, 0, 0, 0.1) 70%, rgba(180, 0, 0, 0.25) 100%);
  pointer-events: none;
  z-index: 2;
}
#about-instructor .rs-cta-breakout::before {
  content: "\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124\f072\f19d\f279\f124";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: -10%;
  left: -5%;
  width: 115%;
  height: 120%;
  font-size: 38px;
  line-height: 130px;
  letter-spacing: 100px;
  color: #500000;
  opacity: 0.05;
  pointer-events: none;
  transform: rotate(0deg);
  white-space: normal;
  word-wrap: break-word;
  word-break: break-all;
  text-align: left;
  z-index: 1;
}
#about-instructor .rs-container {
  position: relative;
  z-index: 10;
}

/* 2. Layout Grid */
.rs-about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  align-items: center;
}
@media (max-width: 992px) {
  .rs-about-grid {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
}

/* 3. Visual Content (HUD Image Frame) */
.rs-about-visual {
  flex: 1 1 calc(45% - 40px);
}
.rs-about-visual .rs-image-hud {
  position: relative;
  padding: 20px;
}
.rs-about-visual .rs-image-hud img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  filter: contrast(1.05);
}
.rs-about-visual .rs-image-hud .hud-corner {
  position: absolute;
  width: 45px;
  height: 45px;
  border: 4px solid #500000;
  z-index: 11;
}
.rs-about-visual .rs-image-hud .hud-corner.tl {
  top: 0;
  left: 0;
  border-right: 0;
  border-bottom: 0;
}
.rs-about-visual .rs-image-hud .hud-corner.br {
  bottom: 0;
  right: 0;
  border-left: 0;
  border-top: 0;
}

/* 4. Text Content */
.rs-about-content {
  flex: 1 1 calc(55% - 40px);
}
.rs-about-content .rs-instructor-name {
  font-family: "Rajdhani", sans-serif;
  color: #500000;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}
.rs-about-content h2 {
  color: #1a1a1a !important;
  font-family: "Rajdhani", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  line-height: 1;
  margin-bottom: 35px;
}
.rs-about-content h2 .accent-text {
  color: #500000 !important;
}
.rs-about-content p {
  color: #444 !important;
  line-height: 1.85;
  font-size: 1.05rem;
  margin-bottom: 25px;
}

/* 5. Flight Data Stats Bar */
.rs-instructor-stats {
  display: flex;
  gap: 40px;
  background: rgba(255, 255, 255, 0.4);
  padding: 30px;
  border-left: 5px solid #500000;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .rs-instructor-stats {
    justify-content: center;
    border-left: 0;
    border-top: 5px solid #500000;
    gap: 30px;
  }
}
.rs-instructor-stats .stat-item .num {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 5px;
}
.rs-instructor-stats .stat-item small {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #500000;
  font-weight: 800;
}

/* 6. Button Styling */
.rs-btn-accent {
  background: #FFB400;
  color: #000;
  border: none;
  padding: 18px 45px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.4s ease;
  display: inline-block;
  text-decoration: none;
  border-radius: 4px;
  font-size: 1.3em;
}
.rs-btn-accent:hover {
  background: #ffffff !important;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 0 30px rgba(80, 0, 0, 0.2);
  color: #000;
}

.rs-journey-cta {
  position: relative;
  overflow: hidden;
}
.rs-journey-cta .journey-breakout {
  position: relative;
  background: url("https://i0.wp.com/redskyaviation.co.uk/wp-content/uploads/2025/12/runway-1.webp?resize=1200%2C800&ssl=1") center bottom no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  width: 100%;
  height: 80vh;
}
@media (max-width: 480px) {
  .rs-journey-cta .journey-breakout {
    height: auto;
  }
}
.rs-journey-cta .journey-breakout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #f4f7f9 0%, rgba(244, 247, 249, 0.4) 15%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 1;
  pointer-events: none;
}
.rs-journey-cta .rs-container {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}
@media (max-width: 480px) {
  .rs-journey-cta .rs-container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.rs-journey-cta h2 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  line-height: 1;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  margin: 0 auto 30px auto;
  max-width: 600px;
}
.rs-journey-cta .journey-text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 850px;
  margin: 0 auto 50px auto;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgb(0, 0, 0);
}
@media (max-width: 768px) {
  .rs-journey-cta .journey-text {
    max-width: 80%;
  }
}
.rs-journey-cta .rs-btn-accent {
  padding: 18px 40px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  background: #FFB400;
  color: #000;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 30px rgba(255, 180, 0, 0.5);
}
.rs-journey-cta .rs-btn-accent:hover {
  background: #ffffff !important;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 0 30px rgba(255, 180, 0, 0.8);
}

.rs-courses {
  background: #000;
}
.rs-courses hr {
  margin: 0 auto 50px auto;
  color: #FFB400;
  background: #FFB400;
  z-index: 1000000;
  height: 2px;
  width: 50%;
}
.rs-courses .courses-breakout {
  position: relative;
  background: url("https://i0.wp.com/redskyaviation.co.uk/wp-content/uploads/2025/11/redsky-hero2-4.webp?resize=1024%2C683&ssl=1") center center no-repeat;
  background-size: cover;
  overflow: hidden;
  min-height: 90vh;
}
@media (max-width: 480px) {
  .rs-courses .courses-breakout {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.rs-courses .courses-breakout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 1;
}
.rs-courses .rs-container {
  position: relative;
  z-index: 2;
}
.rs-courses h2 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  line-height: 1;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  margin: 0 auto 10px auto;
}
.rs-courses p {
  color: #ffffff;
}
.rs-courses .accent-text {
  color: #FFB400;
}
.rs-courses {
  /* --- UPDATED COURSE CARDS --- */
}
.rs-courses .course-card {
  position: relative;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 3px solid #ffb400;
  box-shadow: 0px 0px 2px rgb(0, 0, 0);
  padding: 0;
  text-align: left;
  height: 100%;
  transition: all 0.4s ease;
  overflow: hidden;
}
.rs-courses .course-card .course-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 180, 0, 0.5);
}
.rs-courses .course-card .course-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.rs-courses .course-card .card-body {
  padding: 40px;
}
.rs-courses .course-card:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: white;
  transform: translateY(-10px);
}
.rs-courses .course-card:hover img {
  transform: scale(1.1);
}
.rs-courses .course-card:hover .card-border-glow {
  opacity: 1;
}
.rs-courses .course-card:hover .course-link {
  color: #FFB400;
}
.rs-courses .course-card:hover .course-image {
  border-bottom: 1px solid #000;
}
.rs-courses .card-title {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.rs-courses .card-desc {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}
.rs-courses .course-link {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}
.rs-courses .card-border-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #ffffff;
  box-shadow: 0 0 20px #FFB400;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.rs-contact {
  margin: 60px auto;
}
@media (max-width: 480px) {
  .rs-contact {
    margin-top: 30px;
    margin-bottom: 0px !important;
  }
  .rs-contact .rs-grid {
    gap: 0;
  }
}
.rs-contact .accent-text {
  color: #FFB400;
}
@media (max-width: 480px) {
  .rs-contact .contact-content {
    margin-bottom: 20px !important;
  }
}
.rs-contact .contact-content h2 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: #000;
}
.rs-contact .contact-content p {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #000;
}
.rs-contact .contact-content .contact-cta-sub {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FFB400;
  font-size: 1.2rem;
}
.rs-contact .form-glass-card {
  background: #ffffff;
  padding: 40px;
  backdrop-filter: blur(10px);
  border-radius: 4px;
}
@media (max-width: 480px) {
  .rs-contact .form-glass-card {
    padding: 0px;
    border: none;
  }
}
.rs-contact .form-glass-card input, .rs-contact .form-glass-card select, .rs-contact .form-glass-card textarea {
  width: 100%;
  background: rgba(255, 180, 0, 0.1);
  border: 1px solid #ffb400;
  padding: 15px;
  color: #000;
  font-family: "Inter", sans-serif;
  outline: none;
  transition: border-color 0.3s ease;
}
.rs-contact .form-glass-card input:focus, .rs-contact .form-glass-card select:focus, .rs-contact .form-glass-card textarea:focus {
  border-color: #FFB400;
}
.rs-contact .form-glass-card button {
  padding: 18px 40px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  background: #FFB400;
  color: #000;
  border: 2px solid #FFB400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.rs-contact .form-glass-card button:hover {
  border: 2px solid #FFB400;
  background: #ffffff !important;
  transform: translate(0px) scale(1);
}
.rs-contact .form-glass-card ::-moz-placeholder {
  color: rgba(255, 180, 0, 0.4);
}
.rs-contact .form-glass-card ::placeholder {
  color: rgba(255, 180, 0, 0.4);
}

/* --- Mobile Stack Logic --- */
@media (max-width: 991px) {
  .rs-contact .contact-content {
    text-align: center;
    margin-bottom: 40px;
  }
}
.rs-site-footer .footer-bg {
  padding: 80px 0;
  background: #03070b;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.rs-site-footer .footer-heading {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
}
.rs-site-footer .footer-logo {
  width: 120px;
  margin: 0 0 15px -18px;
}
.rs-site-footer .footer-tagline, .rs-site-footer .footer-contact p {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 15px;
}
.rs-site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rs-site-footer .footer-links li {
  margin-bottom: 12px;
}
.rs-site-footer .footer-links li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.rs-site-footer .footer-links li a:hover {
  color: #FFB400;
  padding-left: 5px;
}
.rs-site-footer .copyright {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 30px;
  opacity: 0.5;
}

/* --- Mobile Stack --- */
@media (max-width: 768px) {
  .rs-site-footer {
    text-align: center;
  }
  .rs-site-footer .footer-links li a:hover {
    padding-left: 0;
  }
}
/* --- PPL Hero Section --- */
.rs-ppl-hero {
  position: relative;
  padding: 180px 0 100px 0;
  min-height: 75vh;
  background: linear-gradient(#1a1a1a 6%, rgba(12, 12, 13, 0.6823529412) 30%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 60%, rgb(0, 0, 0)), url("https://bondgroundschool.co.uk/wp-content/uploads/2025/01/pilot-woman-in-the-hangar-surrounded-by-small-plan-2025-01-09-00-58-59-utc-scaled.jpg");
  background-size: cover;
  background-position: center bottom;
  background-attachment: fixed;
}
.rs-ppl-hero .rs-ppl-title {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2rem, 8vw, 3.5rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff !important;
  text-transform: uppercase;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
  margin-bottom: 30px;
}
.rs-ppl-hero .rs-ppl-title .accent-text {
  color: #FFB400 !important;
}
.rs-ppl-hero .rs-hero-intro {
  max-width: 700px;
  margin: 0 auto 60px;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  opacity: 0.95;
}

.rs-hero-stats {
  --cols: 3;
  max-width: 1000px;
  margin: 0 auto;
  gap: 30px;
}
.rs-hero-stats .rs-stat-box {
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 40px 20px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.rs-hero-stats .rs-stat-box span {
  font-size: 4rem;
  display: block;
  color: #FFB400 !important;
  font-family: "Rajdhani", sans-serif;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.rs-hero-stats .rs-stat-box small {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .rs-ppl-hero {
    padding-top: 120px;
    background-attachment: scroll;
  }
  .rs-hero-stats {
    --cols: 1;
  }
}
/* --- PPL Subjects Grid --- */
.rs-subjects-section {
  padding: 80px 0;
  background-color: #ffffff;
}
.rs-subjects-section h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  color: #1a1a1a;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.rs-subjects-section h2 .accent-text {
  color: #500000;
}
.rs-subjects-section p {
  text-align: center;
  max-width: 800px;
  margin: 20px auto;
}

.rs-subject-card {
  text-align: left;
  padding: 40px 30px;
  background: #ffffff;
  border-top: 4px solid #500000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.rs-subject-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(80, 0, 0, 0.1);
  border-top-color: #FFB400;
}
.rs-subject-card h4 {
  font-family: "Rajdhani", sans-serif;
  color: #1a1a1a;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}
.rs-subject-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
  text-align: left;
}

/* --- PPL Requirements Section --- */
.rs-requirements-section {
  padding: 100px 0;
  background-color: #fcfcfc;
  border-top: 1px solid #eeeeee;
}
.rs-requirements-section h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  color: #1a1a1a;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.rs-requirements-section h2 .accent-text {
  color: #500000;
}

.rs-accordion {
  max-width: 900px;
  margin: 0 auto;
}
.rs-accordion-item {
  border-bottom: 1px solid #e0e0e0;
  background: #ffffff;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}
.rs-accordion-header {
  width: 100%;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.rs-accordion-header span:first-child {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #1a1a1a;
  letter-spacing: 0.05em;
}
.rs-accordion-header .icon {
  font-size: 1.5rem;
  color: #500000;
  transition: transform 0.3s ease;
}
.rs-accordion-header[aria-expanded=true] .icon {
  transform: rotate(45deg);
  color: #FFB400;
}
.rs-accordion-content {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.rs-accordion-content .inner {
  padding-bottom: 30px;
}
.rs-accordion-content .inner p {
  margin: 0;
  line-height: 1.7;
  color: #444;
  font-size: 1rem;
}

.rs-courses-hero {
  z-index: 3000;
  position: relative;
  padding: 180px 0 0 0;
  min-height: 65vh;
  background: linear-gradient(#1a1a1a 13.87%, rgba(12, 12, 13, 0.6823529412) 46.64%, rgba(0, 0, 0, 0.4) 55.04%, rgba(0, 0, 0, 0) 75.21%, rgba(0, 0, 0, 0.8)), url("https://bondgroundschool.co.uk/wp-content/uploads/2025/01/two-small-red-and-white-airplanes-in-airport-hanga-2024-10-18-17-45-16-utc-scaled.jpg");
  background-size: cover;
  background-position: center;
}
@media (max-width: 992px) {
  .rs-courses-hero {
    padding: 180px 0 60px 0;
    min-height: auto;
  }
}
.rs-courses-hero .rs-page-title {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 800;
  color: #fff !important;
  text-transform: uppercase;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}
.rs-courses-hero .rs-page-title .accent-text {
  color: #FFB400 !important;
}
.rs-courses-hero .rs-hero-intro {
  max-width: 700px;
  margin: 20px auto 0;
  color: #fff;
  font-size: 1.1rem;
  opacity: 0.9;
}

.rs-course-switcher {
  background-color: #EFEFEF;
  position: relative;
}
.rs-course-switcher .rs-mobile-selector {
  display: none;
}
@media (max-width: 480px) {
  .rs-course-switcher .rs-mobile-selector {
    display: block;
    position: sticky;
    top: 100px;
    z-index: 2000;
    background: #F5F5F5;
    margin: 0 0 25px 0;
    border-radius: 4px;
    border: 1px solid #EFEFEF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
  }
  .rs-course-switcher .rs-mobile-selector::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: -2%;
    width: 104%;
    height: 110px;
    background: #000;
    pointer-events: none;
  }
}
.rs-course-switcher .rs-mobile-selector .rs-selector-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  position: relative;
  z-index: 2;
}
.rs-course-switcher .rs-mobile-selector .rs-selector-label {
  display: flex;
  flex-direction: column;
}
.rs-course-switcher .rs-mobile-selector .rs-selector-label small {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #888;
  font-weight: 700;
  margin-bottom: 2px;
  letter-spacing: 0.15em;
}
.rs-course-switcher .rs-mobile-selector .rs-selector-label span {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: #111;
  font-family: "Rajdhani";
}
.rs-course-switcher .rs-mobile-selector .rs-selector-arrows {
  display: flex;
  flex-direction: column;
  font-size: 0.65rem;
  color: #FFB400;
  line-height: 1;
  gap: 3px;
  opacity: 0.8;
}
.rs-course-switcher .rs-mobile-selector .rs-mobile-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -1px;
  width: calc(100% + 2px);
  background: #FFF;
  border: 1px solid #EFEFEF;
  border-top: none;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  z-index: 2001;
}
.rs-course-switcher .rs-mobile-selector .rs-mobile-dropdown.is-open {
  display: block;
}
.rs-course-switcher .rs-mobile-selector .rs-mobile-dropdown .rs-tab-trigger {
  padding: 18px 20px;
  border-bottom: 1px solid #EFEFEF;
  display: block;
  text-decoration: none;
  background: #FFF;
  transition: background 0.3s ease;
}
.rs-course-switcher .rs-mobile-selector .rs-mobile-dropdown .rs-tab-trigger span {
  color: #111;
  font-weight: 800;
  font-size: 1.1rem;
  font-family: "Rajdhani";
  text-transform: uppercase;
}
.rs-course-switcher .rs-mobile-selector .rs-mobile-dropdown .rs-tab-trigger small {
  display: block;
  font-size: 0.65rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.rs-course-switcher .rs-mobile-selector .rs-mobile-dropdown .rs-tab-trigger.active {
  background: #F9F9F9;
}
.rs-course-switcher .rs-mobile-selector .rs-mobile-dropdown .rs-tab-trigger.active span {
  color: #FFB400;
}
.rs-course-switcher .rs-mobile-selector .rs-mobile-dropdown .rs-tab-trigger:last-child {
  border-bottom: none;
}
.rs-course-switcher .rs-tab-nav-wrapper {
  position: sticky;
  top: 70px;
  background-color: #EFEFEF;
  z-index: 1000;
  margin-top: -1px;
  padding-top: 30px;
}
@media (max-width: 480px) {
  .rs-course-switcher .rs-tab-nav-wrapper {
    display: none;
  }
}
.rs-course-switcher .rs-tab-nav-wrapper::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200vw;
  height: 100px;
  background: #000;
  pointer-events: none;
}
.rs-course-switcher .rs-tab-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 2px;
  background-color: #EFEFEF;
}
.rs-course-switcher .rs-tab-trigger {
  background: #DDD;
  padding: 10px 40px;
  cursor: pointer;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .rs-course-switcher .rs-tab-trigger {
    padding: 10px 20px;
  }
}
@media (max-width: 768px) {
  .rs-course-switcher .rs-tab-trigger {
    padding: 10px 15px;
  }
  .rs-course-switcher .rs-tab-trigger span {
    font-size: 1.2rem !important;
  }
}
.rs-course-switcher .rs-tab-trigger:hover {
  background: #EFEFEF;
}
.rs-course-switcher .rs-tab-trigger::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: #FFB400;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.rs-course-switcher .rs-tab-trigger span {
  font-family: "Rajdhani";
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.4rem;
  color: #1a1a1a;
}
.rs-course-switcher .rs-tab-trigger small {
  font-family: "Rajdhani";
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #999;
  font-size: 0.75rem;
  margin-bottom: 8px;
  display: block;
}
.rs-course-switcher .rs-tab-trigger.active {
  background: #FFF;
}
.rs-course-switcher .rs-tab-trigger.active span, .rs-course-switcher .rs-tab-trigger.active small {
  color: #FFB400;
}
.rs-course-switcher .rs-tab-trigger.active::after {
  width: 100%;
}
.rs-course-switcher .rs-tab-stage {
  background-color: #FFF;
  position: relative;
  z-index: 5;
  display: block;
  width: 100%;
}
@media (max-width: 480px) {
  .rs-course-switcher .rs-tab-stage {
    position: sticky;
    top: 190px;
    overflow: visible;
    margin-top: 30px;
  }
}
.rs-course-switcher .rs-tab-stage::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
}
.rs-course-switcher .rs-tab-pane {
  position: relative;
  background: #fff;
  display: none;
  opacity: 0;
  padding: 0;
}
@media (max-width: 480px) {
  .rs-course-switcher .rs-tab-pane {
    padding: 40px 20px;
  }
}
.rs-course-switcher .rs-tab-pane.active {
  display: block;
  animation: rsTabFadeIn 0.4s ease forwards;
}

@keyframes rsTabFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
[class*=rs-course-content-wrap-] .rs-flex-grid {
  display: flex;
  gap: 0px;
}
@media (max-width: 768px) {
  [class*=rs-course-content-wrap-] .rs-flex-grid {
    flex-direction: column;
    gap: 0px;
  }
}
[class*=rs-course-content-wrap-] .rs-info-card {
  flex: 1;
  padding: 40px 60px;
}
@media (max-width: 992px) {
  [class*=rs-course-content-wrap-] .rs-info-card {
    padding: 50px 40px;
  }
}
@media (max-width: 768px) {
  [class*=rs-course-content-wrap-] .rs-info-card {
    padding: 30px 20px;
  }
}
@media (max-width: 480px) {
  [class*=rs-course-content-wrap-] .rs-info-card {
    padding: 0px;
  }
}
[class*=rs-course-content-wrap-] .rs-info-card.rs-bg-white {
  background: #FFF;
}
[class*=rs-course-content-wrap-] .rs-info-card.rs-border-right {
  border-right: 1px solid #EEE;
}
@media (max-width: 768px) {
  [class*=rs-course-content-wrap-] .rs-info-card.rs-border-right {
    border-right: none;
  }
}
[class*=rs-course-content-wrap-] .rs-content-row {
  padding: 0;
}
[class*=rs-course-content-wrap-] .rs-content-row.rs-bg-grey {
  background: #F9F9F9;
}
[class*=rs-course-content-wrap-] .rs-content-row.rs-bg-dark {
  background: #111;
  color: #FFF;
}
[class*=rs-course-content-wrap-] .rs-content-row.rs-border-top {
  border-top: 1px solid #EEE;
}
[class*=rs-course-content-wrap-] .rs-content-row .rs-matrix-container {
  padding: 40px 60px;
}
@media (max-width: 992px) {
  [class*=rs-course-content-wrap-] .rs-content-row .rs-matrix-container {
    padding: 40px 40px;
  }
}
@media (max-width: 768px) {
  [class*=rs-course-content-wrap-] .rs-content-row .rs-matrix-container {
    padding: 40px 20px;
  }
}
@media (max-width: 480px) {
  [class*=rs-course-content-wrap-] .rs-content-row .rs-matrix-container {
    margin: 0 -20px;
  }
}
[class*=rs-course-content-wrap-] .rs-kicker {
  display: block;
  font-family: "Rajdhani";
  font-weight: 700;
  text-transform: uppercase;
  color: #888;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  margin-bottom: 15px;
}
[class*=rs-course-content-wrap-] .rs-h2-brief, [class*=rs-course-content-wrap-] .rs-display-h2 {
  font-family: "Rajdhani";
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 35px;
  color: inherit;
}
[class*=rs-course-content-wrap-] .rs-h2-brief .accent-text, [class*=rs-course-content-wrap-] .rs-display-h2 .accent-text {
  color: #FFB400;
}
@media (max-width: 768px) {
  [class*=rs-course-content-wrap-] .rs-h2-brief, [class*=rs-course-content-wrap-] .rs-display-h2 {
    font-size: 1.8rem;
  }
}
[class*=rs-course-content-wrap-] .rs-lead {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 40px;
}
.rs-bg-dark [class*=rs-course-content-wrap-] .rs-lead {
  color: #AAA;
}
[class*=rs-course-content-wrap-] .rs-small-caps {
  font-family: "Rajdhani";
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #999;
  font-size: 0.75rem;
}
[class*=rs-course-content-wrap-] .rs-cta-box, [class*=rs-course-content-wrap-] .rs-getting-started-box {
  background: #F9F9F9;
  padding: 40px;
  border-left: 4px solid #FFB400;
}
[class*=rs-course-content-wrap-] .rs-cta-box h3, [class*=rs-course-content-wrap-] .rs-getting-started-box h3 {
  font-family: "Rajdhani";
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: #111;
}
[class*=rs-course-content-wrap-] .rs-cta-box p, [class*=rs-course-content-wrap-] .rs-getting-started-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}
@media (max-width: 768px) {
  [class*=rs-course-content-wrap-] .rs-cta-box, [class*=rs-course-content-wrap-] .rs-getting-started-box {
    margin: 0 -20px;
  }
}
[class*=rs-course-content-wrap-] .rs-btn, [class*=rs-course-content-wrap-] .rs-btn-ghost-red {
  display: inline-block;
  padding: 12px 30px;
  font-family: "Rajdhani";
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}
[class*=rs-course-content-wrap-] .rs-spec-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}
[class*=rs-course-content-wrap-] .rs-spec-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
[class*=rs-course-content-wrap-] .rs-spec-list li .spec-num {
  font-family: "Rajdhani";
  font-weight: 800;
  font-size: 3.5rem;
  color: #FFB400;
  line-height: 1;
  min-width: 70px;
}
[class*=rs-course-content-wrap-] .rs-spec-list li .spec-text strong {
  display: block;
  font-family: "Rajdhani";
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #111;
}
[class*=rs-course-content-wrap-] .rs-spec-list li .spec-text small {
  color: #888;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
[class*=rs-course-content-wrap-] .rs-btn {
  background: #111;
  color: #FFF;
}
[class*=rs-course-content-wrap-] .rs-btn:hover {
  background: #FFB400;
  color: #111;
}
[class*=rs-course-content-wrap-] .rs-btn-ghost-red {
  background: #FFB400;
  color: #000;
  border-radius: 5px;
  border: 2px solid #FFB400;
}
[class*=rs-course-content-wrap-] .rs-btn-ghost-red:hover {
  background: transparent;
}
[class*=rs-course-content-wrap-] .rs-mt-40 {
  margin-top: 40px;
}
[class*=rs-course-content-wrap-] .rs-mt-60 {
  margin-top: 60px;
}
[class*=rs-course-content-wrap-] .rs-mb-20 {
  margin-bottom: 20px;
}
[class*=rs-course-content-wrap-] .rs-py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  [class*=rs-course-content-wrap-] .rs-py-80 {
    padding: 40px 0;
  }
}
[class*=rs-course-content-wrap-] .rs-py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}
[class*=rs-course-content-wrap-] .rs-text-center {
  text-align: center;
}

.rs-course-content-wrap-ppl .rs-datasheet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 80px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .rs-course-content-wrap-ppl .rs-datasheet-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.rs-course-content-wrap-ppl .rs-datasheet-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #DDD;
}
.rs-course-content-wrap-ppl .rs-datasheet-row .ds-name {
  font-family: "Rajdhani";
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  color: #111;
}
.rs-course-content-wrap-ppl .rs-datasheet-row .ds-data {
  display: flex;
  gap: 30px;
}
.rs-course-content-wrap-ppl .rs-datasheet-row .ds-data .ds-item {
  text-align: center;
  min-width: 45px;
}
.rs-course-content-wrap-ppl .rs-datasheet-row .ds-data .ds-item strong {
  display: block;
  font-size: 1.1rem;
  color: #000;
  line-height: 1.1;
}
.rs-course-content-wrap-ppl .rs-datasheet-row .ds-data .ds-item small {
  display: block;
  font-size: 0.6rem;
  color: #FFB400;
  font-weight: 800;
}

.rs-course-content-wrap-imc .rs-instrument-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .rs-course-content-wrap-imc .rs-instrument-specs {
    grid-template-columns: repeat(2, 1fr);
  }
}
.rs-course-content-wrap-imc .rs-instrument-specs .rs-spec-item {
  text-align: center;
}
.rs-course-content-wrap-imc .rs-instrument-specs .rs-spec-item strong {
  display: block;
  font-family: "Rajdhani";
  font-size: 3rem;
  color: #FFB400;
  line-height: 1;
}
.rs-course-content-wrap-imc .rs-instrument-specs .rs-spec-item small {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #888;
  margin-top: 5px;
}
.rs-course-content-wrap-imc .rs-simple-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.rs-course-content-wrap-imc .rs-simple-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #555;
}
.rs-course-content-wrap-imc .rs-simple-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 1px;
  background: #FFB400;
}
.rs-course-content-wrap-imc .rs-check-list {
  list-style: none;
  padding: 0;
}
.rs-course-content-wrap-imc .rs-check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #444;
}
.rs-course-content-wrap-imc .rs-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #FFB400;
  font-weight: 900;
  font-size: 1.1rem;
}
.rs-course-content-wrap-imc .rs-check-list li strong {
  color: #111;
  font-family: "Rajdhani";
  text-transform: uppercase;
  font-size: 0.9rem;
}
.rs-course-content-wrap-imc .rs-info-column {
  flex: 1;
}
.rs-course-content-wrap-imc .rs-info-column .rs-h3-alt {
  color: #111;
}

.rs-course-content-wrap-further .rs-module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .rs-course-content-wrap-further .rs-module-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.rs-course-content-wrap-further .rs-module-card {
  display: flex;
  gap: 25px;
  padding: 35px;
  background: #F9F9F9;
  border-left: 4px solid #EEE;
  transition: 0.3s;
}
.rs-course-content-wrap-further .rs-module-card:hover {
  border-left-color: #FFB400;
  background: #FFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.rs-course-content-wrap-further .rs-module-card .mod-num {
  font-family: "Rajdhani";
  font-weight: 800;
  font-size: 1.8rem;
  color: #FFB400;
  opacity: 0.3;
}
.rs-course-content-wrap-further .rs-module-card .mod-info h3 {
  font-family: "Rajdhani";
  font-size: 1.3rem;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 8px;
}
.rs-course-content-wrap-further .rs-instrument-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .rs-course-content-wrap-further .rs-instrument-specs {
    grid-template-columns: repeat(2, 1fr);
  }
}
.rs-course-content-wrap-further .rs-instrument-specs .rs-spec-item {
  text-align: center;
}
.rs-course-content-wrap-further .rs-instrument-specs .rs-spec-item strong {
  display: block;
  font-family: "Rajdhani";
  font-size: 2.5rem;
  color: #FFB400;
}
.rs-course-content-wrap-further .rs-instrument-specs .rs-spec-item small {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  color: #888;
  margin-top: 8px;
}

@keyframes rsTabFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.rs-pricing-section {
  margin: 60px 0;
}
.rs-pricing-section .rs-course-content-wrap-ppl {
  background-color: #FFF;
}
.rs-pricing-section .rs-course-content-wrap-ppl .rs-matrix-header {
  padding: 40px 60px 0 60px;
}
@media (max-width: 992px) {
  .rs-pricing-section .rs-course-content-wrap-ppl .rs-matrix-header {
    padding: 40px 40px 0 40px;
  }
}
@media (max-width: 480px) {
  .rs-pricing-section .rs-course-content-wrap-ppl .rs-matrix-header {
    padding: 20px;
  }
}
.rs-pricing-section .rs-course-content-wrap-ppl .pricing-tables {
  background: #FFF;
  overflow: hidden;
  padding: 20px;
}
.rs-pricing-section .rs-equal-height-row {
  display: flex;
  align-items: stretch;
}
@media (max-width: 992px) {
  .rs-pricing-section .rs-equal-height-row {
    flex-direction: column;
  }
}
.rs-pricing-section .rs-flex-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
}
.rs-pricing-section .rs-h3-alt, .rs-pricing-section .rs-h4-nav {
  font-family: "Rajdhani", sans-serif !important;
  text-transform: uppercase;
  font-weight: 800;
  color: #111;
}
.rs-pricing-section .rs-h3-alt {
  font-size: 2rem;
  margin-bottom: 25px;
}
.rs-pricing-section .rs-h4-nav {
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.rs-pricing-section .rs-price-list {
  list-style: none;
  padding: 0;
}
.rs-pricing-section .rs-price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #F0F0F0;
}
.rs-pricing-section .rs-price-list li span {
  font-size: 0.95rem;
  color: #555;
}
.rs-pricing-section .rs-price-list li strong {
  font-family: "Rajdhani";
  font-size: 1.2rem;
  color: #111;
}
.rs-pricing-section .rs-cta-box {
  background: #F9F9F9;
  border: 1px solid #EEE;
  border-left: 5px solid #FFB400;
  padding: 30px;
  flex-grow: 0;
}
.rs-pricing-section .rs-cta-box .rs-price-amount {
  display: flex;
  align-items: flex-start;
  font-family: "Rajdhani";
  font-weight: 800;
  margin: 10px 0;
}
.rs-pricing-section .rs-cta-box .rs-price-amount .currency {
  font-size: 1.5rem;
  margin-top: 5px;
  color: #FFB400;
}
.rs-pricing-section .rs-cta-box .rs-price-amount .value {
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -2px;
}

/* @use 'courses-nav-cards' as *; */
/* @use 'courses-details' as *; */