



img[alt*="float-right"] {
  float: right;
  width: 200px;
  margin: 0 0 1rem 1rem;
  border-radius: 8px;
}

img[alt*="float-left"] {
  float: left;
  width: 200px;
  margin: 0 1rem 1rem 0;
  border-radius: 8px;
}

img[alt*="float-right-large"] {
  float: right;
  width: 300px;
  margin: 0 0 1rem 1rem;
  border-radius: 8px;
}

img[alt*="float-left-large"] {
  float: left;
  width: 300px;
  margin: 0 1rem 1rem 0;
  border-radius: 8px;
}

img[alt*="center-image"] {
  display: block;
  width: 450px;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 700px) {
  img[alt*="float-right"],
  img[alt*="float-left"] {
    float: none;
    width: 100%;
    margin: 1rem 0;
  }
}


.partner-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(160px, 1fr));

  gap: 2rem;

  align-items: center;

  margin: 3rem 0;
}

.partner-grid img {
  width: 100%;

  max-width: 180px;

  margin: auto;

  display: block;

  opacity: 0.85;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.partner-grid img:hover {
  opacity: 1;

  transform: scale(1.05);
}

.callout {
  border-radius: 18px !important;
  padding: 1rem 1.2rem !important;
  background-color: #BAD696 !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);

  border: none !important;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.callout:hover {
  transform: translateY(-2px);

  box-shadow: 0 14px 36px rgba(0,0,0,0.10);

  background-color: #B2D091 !important;
}

.callout-icon {
  display: none !important;
}

.callout-title {
  gap: 0 !important;
  color: #000000 !important;
}

.modern-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  margin: 1.5rem 0;
}

h1 {
  
}

h3 {
  font-size: 14px !important;;
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
  padding-right: 0rem !important;
  padding-left: 0rem !important;
  border-radius: 0px !important;;
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
  text-align: left !important;
}

h4 {
  color: #72BA8B;
  padding: 0.3rem 0.3rem;
  border-radius: 8px;
  margin-top: 0.2rem !important;
  margin-bottom: 0 !important;
  text-align: left !important;
}

h5 {
  display: inline-block;
  font-size: 14px !important;;
  background-color: #BAD696;
  padding-top: 0.3rem !important;
  padding-bottom: 0.3rem !important;
  padding-right: 0.3rem !important;
  padding-left: 1.7rem !important;
  border-radius: 6px !important;;
  margin-top: 1.2rem !important;
  margin-bottom: -5rem !important;
  text-align: left !important;
}

h6 {
  display: inline-block;
  padding: 0.2rem 0.2rem;
  border-radius: 8px;
  margin-top: 0.2rem !important;
  margin-bottom: 0 !important;
  text-align: left !important;
}

a {
  color: #72BA8B !important;
  text-decoration: none !important;
}

a:hover {
  color: #FCD40D !important;
  text-decoration: underline;
}

.heading-link {
    display: none !important;
}

.site-footer {
  display: none !important;
}

html,
body {
  overflow-x: hidden;
}

/* Timeline */

.timeline {
  position: relative;

  margin: 3rem 0;
}

.timeline::before {
  content: "";

  position: absolute;

  left: 20px;
  top: 0;

  width: 3px;
  height: 100%;

  background: #cbd5e1;
}

.timeline-step {
  display: flex;

  align-items: flex-start;

  gap: 1.5rem;

  position: relative;

  margin-bottom: 2.5rem;
}

.timeline-number {
  min-width: 40px;
  height: 40px;

  border-radius: 50%;

  background: #BAD696;

  color: white;

  display: flex;

  align-items: center;
  justify-content: center;

  font-weight: bold;

  position: relative;

  z-index: 2;

  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.timeline-content {
  background: #BAD696;

  padding: 1.2rem 1.4rem;

  border-radius: 18px;

  box-shadow: 0 8px 24px rgba(0,0,0,0.05);

  flex: 1;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.timeline-content:hover {
  transform: translateY(-3px);

  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.timeline-content h4 {
  margin-top: 0;
}

@keyframes timelineFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline-step {
  opacity: 0;
  animation: timelineFadeIn 1s ease forwards !important;
}

.timeline-step:nth-child(1) {
  animation-delay: 0.1s !important;
}

.timeline-step:nth-child(2) {
  animation-delay: 0.4s !important;
}

.timeline-step:nth-child(3) {
  animation-delay: 0.7s !important;
}

.timeline-step:nth-child(4) {
  animation-delay: 1s !important;
}



.back-button {
  display: inline-block;

  padding: 0.5rem 1rem;

  border-radius: 12px;

  background-color: #eff6ff;

  color: #2563eb !important;

  text-decoration: none !important;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.back-button:hover {
  background-color: #dbeafe;

  transform: translateX(-2px);
}

@keyframes fadeContent {
  from {
    opacity: 0;
    
  }

  to {
    opacity: 1;
    
  }
}

.markdown-rendered > *:not(.timeline):not(.timeline *) {
  animation-name: fadeContent !important;
  animation-duration: 1.2s !important;
  animation-timing-function: ease !important;
  animation-fill-mode: both !important;
}

@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromFarRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.markdown-rendered h1 {
  animation: slideFromRight 1.2s ease both !important;
}

.markdown-rendered h4 {
  animation: slideFromFarRight 2.2s ease both !important;
}

@media (max-width: 700px) {
  .site-header,
  .site-header-mobile,
  .mobile-navbar,
  .mobile-header {
    display: none !important;
  }
}