* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root { 
  --primary: #ff6a3e;
  --primaryLight: #ffba43;
  --secondary: #ffba43;
  --secondaryLight: #ffba43;
  --headerColor: #ffffff;
  --bodyTextColor: #ffffff;
  --bodyTextColorWhite: #fafbfc;
  --linkColorBlack: #000000;
  /* 13px - 16px */
  --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
  /* 31px - 49px */
  --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
  --bodyFontSize: 1rem;
  /* 60px - 100px top and bottom */
  --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}
body {
  font-family: 'Roboto', 'Arial', sans-serif;
  background: linear-gradient(135deg, #0f2b59, #0a1f44);
  color: var(--bodyTextColor);
  overflow-x: hidden; /* Hide horizontal overflow */
}

.title-black {
  color: var(--linkColorBlack);
}

.cs-topper {
  font-size: var(--topperFontSize);
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: inherit;
  letter-spacing: .1em;
  font-weight: 700;
  color: var(--secondaryLight);
  margin-bottom: 0.25rem;
  display: block;
}

.cs-title {
  font-size: var(--headerFontSize);
  font-weight: 900;
  line-height: 1.2em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1rem 0;
  color: var(--headerColor);
  position: relative;
}

.cs-text {
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
} 

.hero-background {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 0; 
  background-color: #28408e46;

  background-image:
    radial-gradient(
      circle at 25% 50%,
      rgba(255, 255, 255, 0.319),
      rgba(255, 255, 255, 0) 40%
    ),
    linear-gradient(
      to right,
      rgba(10,22,50,0) 40%,
      rgba(5,10,25,0.8) 100%
    );

  background-blend-mode: overlay;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-color: #02122c;
  z-index: -1; 
  width: 50%;
  clip-path: polygon(100% 20%, 100% 0, 100% 100%, 60% 100%);
}

a {
  color: var(--secondaryLight);
}
a:hover {
  text-decoration: underline;
}


header {
  text-align: center;
  padding: 40px 20px 20px;
}
header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.container section {
  width: 100%;
}

.section-wrapper {
  width: 100vw;
  position: relative;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #ffffff;
}

/* Wave separator */
.section-content.wave-separator::before {
    content: '';
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    height: 70px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    background-size: cover;
}

/* Slant separator */
.section-content.slant-separator::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom right, transparent 49%, #ffffff 50%);
}

/* Curve separator */
.section-content.curve-separator::before {
    content: '';
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    height: 70px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' d='M0,160L1440,32L1440,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    background-size: cover;
}

.section-content {
  display: flex;
  justify-content: center;
  padding: 75px 0;
  width: 100%;
  position: relative;
}

.section-content.section-dark {
  background-color: #0e1e46;
  color: var(--headerColor);
}

.section-content::before {
  content: '';
  position: absolute;
  top: -70px;
  left: 0;
  width: 100%;
  height: 70px;
  background-size: cover;
}

/* Wave separator for light sections going to dark */
.section-content.section-dark::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%230e1e46' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
}

/* Wave separator for dark sections going to light */
.section-content:not(.section-dark)::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
}

.section-container {
  max-width: 80rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  padding: 0 2rem;
}

.section-bg {
  color: #ffffff;
}

#app {
  padding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

@media only screen and (min-width: 0rem) {
  .container {
    width: 100%;
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
    z-index: 1;
  }
  #app .cs-content {
    text-align: left;
    width: 100%;
    max-width: 32.625rem;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1;
    margin-bottom: 20px;
  }

  #app .icon {
    width: clamp(3.75rem, 7.6vw, 4.8125rem);
    height: auto;
    margin-bottom: 2.5rem;
    display: block;
  }
  #app h3 {
      font-size: clamp(1.25rem, 1.5vw, 1.5625rem);
      line-height: 1.2em;
      margin: 0;
      margin-bottom: 1rem;
      font-weight: bold;
  }

  #app h3 a {
    font-size: clamp(1.25rem, 1.5vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: bold;
  }

  #app .cs-button-solid {
    font-size: 1rem;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: var(--linkColorBlack);
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--secondaryLight);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #app .cs-button-solid:before {
      content: "";
      position: absolute;
      height: 100%;
      width: 0%;
      background: var(--primary);
      opacity: 1;
      top: 0;
      left: 0;
      z-index: -1;
      border-radius: 0.25rem;
      transition: width 0.3s;
  }
  #app .cs-button-solid:hover:before {
      width: 100%;
  }
  #app .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
}


/* --------------
    Contact Info
    -------------- */
.contact-info {
  text-align: center;
  margin-top: 40px;
}
.contact-info p {
  margin: 10px 0;
  font-size: 1rem;
}

/* --------------
    Footer
    -------------- */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  opacity: 0.7;
}

@media only screen and (min-width: 48rem) {
  .container {
    max-width: 80rem;
    position: relative;
    z-index: 1;
  }
  #app .cs-content {
    width: 50%;
  }
  #app .item-group {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
  }
  #app .item {
    grid-column: span 4;
    grid-row: span 1;
    margin: 0;
    align-self: stretch;
  }
  #app .cs-watermark {
    width: 30%;
    max-width: 14rem;
    height: auto;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
  }
  .ag-courses_item {
    -ms-flex-preferred-size: calc(50% - 30px);
    flex-basis: calc(50% - 30px);
  }
  .ag-courses-item_title {
    font-size: 24px;
  }
}

.ag-format-container {
  width: 80rem;
  margin: 0 auto;
}

.ag-courses_box {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 50px 0;
}
.ag-courses_item {
  flex-basis: calc(33.33333% - 30px);
  margin: 0 15px 30px;
  overflow: hidden;
  border-radius: 28px;
}
.ag-courses-item_link {
  display: block;
  padding: 30px 20px;
  background-color: #121212;
  overflow: hidden;
  position: relative;
}
.ag-courses-item_link:hover,
.ag-courses-item_link:hover .ag-courses-item_date {
  text-decoration: none;
  color: #FFF;
}
.ag-courses-item_link:hover .ag-courses-item_bg {
  transform: scale(10);
}
.ag-courses-item_title {
  min-height: 87px;
  margin: 0 0 25px;
  overflow: hidden;
  font-weight: bold;
  font-size: 30px;
  color: #FFF;
  z-index: 2;
  position: relative;
}
.ag-courses-item_date-box {
  font-size: 18px;
  color: #FFF;
  z-index: 2;
  position: relative;
}
.ag-courses-item_date {
  font-weight: bold;
  color: #f9b234;
  transition: color .5s ease;
}
.ag-courses-item_bg {
  height: 128px;
  width: 128px;
  background-color: #f9b234;
  z-index: 1;
  position: absolute;
  top: -75px;
  right: -75px;
  border-radius: 50%;
  transition: all .5s ease;
}
.ag-courses_item:nth-child(2n) .ag-courses-item_bg {
  background-color: #3ecd5e;
}
.ag-courses_item:nth-child(3n) .ag-courses-item_bg {
  background-color: #e44002;
}
.ag-courses_item:nth-child(4n) .ag-courses-item_bg {
  background-color: #f9b234;
}
.ag-courses_item:nth-child(5n) .ag-courses-item_bg {
  background-color: #3ecd5e;
}
.ag-courses_item:nth-child(6n) .ag-courses-item_bg {
  background-color: #e44002;
}


@media only screen and (max-width: 1280px) {
  .ag-format-container {
    width: 96%;
  }
  .ag-courses_item {
    flex-basis: calc(50% - 30px);
  }
}
@media only screen and (max-width: 700px) {
  .ag-courses_item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .ag-courses-item_title {
    min-height: 72px;
    line-height: 1;
    font-size: 24px;
  }
  .ag-courses-item_link {
    padding: 22px 40px;
  }
  .ag-courses-item_date-box {
    font-size: 16px;
  }
}

.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

.nav-collapse,
.nav-collapse * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.nav-collapse,
.nav-collapse ul {
  list-style: none;
  width: 100%;
  float: left;
}

.nav-collapse li {
  float: left;
  width: 100%;
}

.nav-collapse a {
  color: var(--bodyTextColor);
  text-decoration: none;
  width: 100%;
  border-bottom: 1px solid white;
  padding: 0.7em 1em;
  float: left;
}

.nav-collapse a:hover {
  color: var(--secondary);
}


.nav-collapse ul ul a {
  background: #ca3716;
  padding-left: 2em;
}

@media screen and (min-width: 40em) {
  .nav-collapse ul {
    width: auto;
    float: right;
  }
  .nav-collapse li {
    width: auto;
    margin: 0 1.5rem;
  }
  .nav-collapse li:last-child {
    margin-right: 0;
  }
  .nav-collapse a {
    margin: 0;
    padding: 1em;
    float: left;
    text-align: center;
    border-bottom: 0;
  }
}

.nav-toggle {
  position: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  text-indent: -999px;
  position: relative;
  overflow: hidden;
  width: 70px;
  height: 55px;
  float: right;
  z-index: 1;
}

.nav-toggle:before {
  color: var(--secondaryLight); /* Edit this to change the icon color */
  font-family: "responsivenav", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-size: 28px;
  text-transform: none;
  position: absolute;
  content: "≡";
  text-indent: 0;
  text-align: center;
  line-height: 55px;
  speak: none;
  width: 100%;
  top: 0;
  left: 0;
}

.nav-toggle.active::before {
  font-size: 24px;
  content:"x";
}

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

.service-item {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-item::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.service-title {
  color: var(--primaryLight);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.service-description {
  color: #333;
  line-height: 1.6;
  margin: 0.5rem 0;
}

.service-image {
  border-radius: 8px;
  margin: 2rem 0;
  max-width: 100%;
  height: auto;
  background-color: white;
  transition: transform 0.3s ease;
}

.service-image:hover {
  transform: scale(1.02);
}

@media only screen and (max-width: 768px) {
  .section-container {
    padding: 0 1rem;
  }
  
  .service-image {
    margin: 1rem 0;
  }
}

section .section-dark {
  background-color: #0e1e46;
}

.section-dark .service-description {
  color: var(--bodyTextColor);
}

/* Card System Styles */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
  margin: 2rem 0;
}

.card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--primaryLight);
  margin-bottom: 1.5rem;
}

.card-title {
  color: var(--headerColor);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.card-description {
  color: var(--bodyTextColorWhite);
  line-height: 1.6;
  font-size: 1rem;
}

@media only screen and (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card {
    padding: 1.5rem;
  }
}

.benefits-block {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.benefits-title {
  color: var(--linkColorBlack);
  font-size: 1.5rem!important;
  margin-bottom: 1.5rem!important;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  color: var(--linkColorBlack);
}

.benefits-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.benefits-list li::before {
  content: "•";
  color: var(--secondary);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.contact-block h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-list i {
  color: var(--secondary);
}

.contact-list a {
  color: var(--linkColorBlack);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.contact-list a:hover {
  color: var(--secondary);
}

.closing-text {
  margin-top: 1.5rem;
  font-style: italic;
  opacity: 0.8;
}

@media only screen and (max-width: 768px) {
  .benefits-block {
    padding: 1.5rem;
  }
  
  .benefits-title {
    font-size: 1.3rem;
  }
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.benefits-content {
  padding-right: 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-block {
  padding-left: 2rem;
}

@media only screen and (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefits-content {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
  }

  .contact-block {
    padding-left: 0;
    padding-top: 1.5rem;
  }
}