/* ============================================ */
/* RESET & GLOBAL STYLES */
/* ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #1a252f;
  color: #f3f4f6;
  text-align: center;
}

/* ============================================ */
/* SCROLLBAR STYLES */
/* ============================================ */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #2c3e50;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #4e9af1, #0066ff);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #6bb5ff, #0052cc);
}

/* ============================================ */
/* ALERT BAR */
/* ============================================ */
.alertBar_x8j3k {
  background: #c40138ff;
  padding: 10px 15px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  color: #ffffff;
}

/* ============================================ */
/* HERO SECTION */
/* ============================================ */
.wrapper_7fn2d {
  width: 90%;
  margin: auto;
  padding: 20px 0;
  max-width: 1140px;
  font-family: "Jost", sans-serif;
}

.mainHeading_g9fjg {
  font-size: 45px;
  margin-bottom: 10px;
  font-weight: 800;
  color: #ffffff;
}

.highlightYellow_m3k9s {
  color: #fddc5c;
  font-weight: 800;
}

.highlightGreen_p2l8q {
  color: #c40138ff;
  font-weight: 800;
}

.subtitleText_r4t7v {
  font-size: 32px;
  margin-top: 5px;
  line-height: 1.4;
  font-weight: 600;
  color: #f3f4f6;
}

.contentLayout_b5h2k {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  gap: 20px;
  align-items: stretch;
}

/* Video Section */
.videoSection_n8s3m {
  width: 60%;
  padding: 15px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
}

.videoSection_n8s3m .sectionTitle_j7d4f {
  font-size: 28px;
  margin-bottom: 20px;
  color: #fddc5c;
  flex-shrink: 0;
}

.videoContainer_k9s2l {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-grow: 1;
}

.videoContainer_k9s2l iframe {
  width: 100%;
  max-width: 480px;
  height: 270px;
  border: none;
  display: block;
  border: 2px solid #2563eb;
  border-radius: 8px;
}

/* Info Container */
.infoContainer_w8h3q {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  margin: auto;
  align-items: stretch;
  margin-top: 15px;
  font-size: 20px;
  padding: 10px;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 600;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.infoContainer_w8h3q .infoRow_f6j2s {
  display: flex;
  gap: 15px;
  width: 100%;
}

.infoContainer_w8h3q .infoItem_p3k9d {
  background: #003366;
  padding: 10px 20px;
  white-space: nowrap;
  flex: 1;
  text-align: center;
  border-radius: 5px;
}

/* Form Section */
.formSection_q2l8r {
  width: 35%;
  background: linear-gradient(135deg, #003366 0%, #1a252f 100%);
  padding: 25px;
  border-radius: 20px;
  border: 4px solid #fddc5c;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.formSection_q2l8r::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 15px;
  background: repeating-linear-gradient(
    45deg,
    #fddc5c,
    #fddc5c 10px,
    #003366 10px,
    #003366 20px
  );
}

.formSection_q2l8r::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 15px;
  background: repeating-linear-gradient(
    45deg,
    #fddc5c,
    #fddc5c 10px,
    #003366 10px,
    #003366 20px
  );
}

.formSection_q2l8r .formTitle_h4j8s {
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: bold;
  color: #fddc5c;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.formContent_r9k3s {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.inputField_m2k9d {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 18px;
  border-radius: 10px;
  border: 2px solid #fddc5c;
  font-size: 16px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  color: #1a252f;
}

.inputField_m2k9d:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.6);
  background: #ffffff;
  transform: translateY(-2px);
}

.submitButton_x8j3f {
  width: 100%;
  padding: 15px;
  background: linear-gradient(to bottom, #fddc5c, #e6c200);
  color: #1a252f;
  font-size: 20px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  margin-top: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.submitButton_x8j3f:hover {
  background: linear-gradient(to bottom, #e6c200, #ccaa00);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.submitButton_x8j3f:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.submitButton_x8j3f.loading {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.submitButton_x8j3f.loading:hover {
  transform: none;
}

/* ============================================ */
/* WHAT SECTION */
/* ============================================ */
.custom-container-x9f {
  background-color: #000;
  font-family: "Jost", sans-serif;
  color: white;
  text-align: center;
  max-width: 1100px;
  margin: auto;
  padding: 0 15px;
}

.main-heading-3j8g {
  font-size: 42px;
  font-weight: bold;
  margin-top: 40px;
}

.highlight-color-7h2 {
  color: #c40138ff;
}

.sub-heading-k5d {
  font-size: 32px;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 50px;
}

.content-wrapper-r4t {
  width: 85%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.video-section-m3n,
.text-section-p6f {
  width: 48%;
}

.responsive-video-x2j {
  width: 100%;
  border-radius: 6px;
  height: 280px;
}

.text-section-p6f {
  font-size: 22px;
  line-height: 1.6;
  text-align: left;
}

.bottom-text-b8k {
  margin-top: 60px;
  font-size: 34px;
  font-weight: bold;
}

.masterclass-title-j7g {
  font-size: 44px;
  font-weight: bold;
  margin-top: 10px;
  color: #2563eb;
  font-family: "Jost", sans-serif;
  margin-bottom: 1rem;
}

/* ============================================ */
/* JOIN SECTION (For Whom) */
/* ============================================ */
.headingg9fjg {
  margin-top: 30px;
  font-size: 36px;
  font-weight: bold;
  font-family: "Jost", sans-serif;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
}

.headingg9fjg span {
  color: #c40138ff;
}

.containerx7d8k {
  width: 90%;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px 0;
}

.gridp4m2q {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.itemr3t9s {
  background: linear-gradient(135deg, #003366 0%, #1a252f 100%);
  padding: 25px;
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 500;
  color: #f3f4f6;
  border: 2px solid #fddc5c;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.itemr3t9s:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  border-color: #2563eb;
  background: linear-gradient(135deg, #003366 0%, #003366 100%);
}

.iconw5n1v {
  font-size: 32px;
  margin-right: 20px;
  color: #fddc5c;
  transition: all 0.3s ease;
}

.itemr3t9s:hover .iconw5n1v {
  color: #2563eb;
  transform: scale(1.1);
}

/* ============================================ */
/* QNA SECTION */
/* ============================================ */
.customContainer {
  margin: 0;
  background: #1a252f;
  font-family: "Jost", Arial, sans-serif;
  color: #f3f4f6;
  text-align: center;
  padding: 0px 8rem;
  padding-bottom: 50px;
}

.customSubTitle {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 40px;
  margin-top: 1rem;
  color: #ffffff;
}

.customGreenText {
  color: #c40138ff;
  margin: 1rem 0;
  font-weight: 700;
  font-size: 2.4rem;
  font-family: "Jost", Sans-serif;
}

.customGrid {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 25px;
}

.customBox {
  background: linear-gradient(135deg, #003366 0%, #1a252f 100%);
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  color: #f3f4f6;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  border: 2px solid #fddc5c;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.customBox:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  border-color: #2563eb;
}

.customBox input {
  width: 28px;
  height: 28px;
  cursor: pointer;
  accent-color: #fddc5c;
}

.customSection {
  margin: auto;
  font-size: 25px;
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: #f3f4f6;
}

.customUnderlineMargin {
  margin-bottom: 1rem;
  text-align: center;
}

.customUnderline {
  text-decoration: underline;
  cursor: pointer;
  color: #fddc5c;
  transition: color 0.3s ease;
}

.customUnderline:hover {
  color: #2563eb;
}

.contentVideoSection {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin: 40px auto;
  max-width: 1200px;
}

.textContent {
  flex: 1;
  text-align: left;
  font-size: 22px;
  line-height: 1.6;
}

.textContent p {
  text-align: center;
}

.videoContainer {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.responsiveVideo {
  width: 100%;
  height: 350px;
  border: none;
}

/* ============================================ */
/* CLASS SECTION (3 Powers) */
/* ============================================ */
.x7f9k2p {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #1a252f;
  text-align: center;
  color: #f3f4f6;
  padding-bottom: 2rem;
}

.h3g8j9d {
  margin-top: 30px;
  font-size: 38px;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  padding-top: 2rem;
  padding-bottom: 2rem;
  color: #ffffff;
}

.c5t2m8n {
  width: 90%;
  margin: auto;
  max-width: 1200px;
}

.s4r6t1k {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.b2x4y7z {
  background: linear-gradient(135deg, #003366 0%, #1a252f 100%);
  color: #f3f4f6;
  padding: 20px;
  width: 32%;
  min-width: 280px;
  box-sizing: border-box;
  padding-bottom: 25px;
  border: 2px solid #fddc5c;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.b2x4y7z:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  border-color: #2563eb;
}

.t8k3p6q {
  color: #fddc5c;
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 20px;
}

.b2x4y7z p {
  line-height: 1.4;
  font-size: 22px;
  text-align: left;
}

.i9m7n2v {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.i9m7n2v img {
  width: 32%;
  min-width: 280px;
  border-radius: 8px;
  height: 240px;
  border: 2px solid #fddc5c;
  transition: all 0.3s ease;
}

.i9m7n2v img:hover {
  transform: scale(1.02);
  border-color: #2563eb;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* ============================================ */
/* GALLERY SECTION */
/* ============================================ */
.custom-gallery-container {
  background: #fff;
  padding: 20px 10rem;
}

.image-display-wrapper {
  width: 95%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 10px;
}

.image-frame {
  background: #fff;
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: transform 0.3s ease;
}

.image-frame:hover img {
  transform: scale(1.05);
}

/* ============================================ */
/* TESTIMONIAL SECTION */
/* ============================================ */
.custom-heading-2 {
  font-family: "Jost", Sans-serif;
  font-size: 35px;
  text-align: center;
  color: #f3f4f6;
}

.custom-heading-2 span {
  color: #c40138ff;
  font-weight: 700;
}

.content-wrapper {
  width: 80%;
  margin: 0 auto;
  margin-top: 20px;
}

.feature-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.feature-item {
  background: linear-gradient(135deg, #003366 0%, #1a252f 100%);
  padding: 25px;
  color: #f3f4f6;
  font-size: 22px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 12px;
  text-align: left;
  border: 2px solid #fddc5c;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  border-color: #2563eb;
}

.checkmark-icon {
  font-size: 26px;
  color: #fddc5c;
}

.sub-heading-text {
  margin-top: 50px;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
}

.description-text {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 50px;
  text-align: center;
  color: #f3f4f6;
}

.testimonials-section {
  width: 75%;
  margin: 50px auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.testimonial-card {
  background: #1a252f;
  border: 4px solid #fddc5c;
  padding: 0;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  min-height: 160px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: #2563eb;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.testimonial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* ============================================ */
/* TRAINER SECTION */
/* ============================================ */
.t-body-custom {
  font-family: Arial, Helvetica, sans-serif;
  background: #dcebee;
  padding: 2rem 0;
}

.section-title-custom {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-top: 50px;
  color: #1a252f;
}

.trainer-container-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 40px;
  gap: 40px;
}

.trainer-text-custom {
  width: 55%;
  font-size: 18px;
  line-height: 1.7;
  color: #1a252f;
  text-align: justify;
}

.trainer-text-custom p {
  margin-top: 10px;
}

.trainer-text-custom h2 {
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 20px;
  color: #c40138ff;
}

.trainer-text-custom b {
  font-weight: 700;
  color: #2563eb;
}

.trainer-image-custom {
  width: 45%;
}

.trainer-image-custom img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 3px solid #fddc5c;
}

/* ============================================ */
/* FAQ SECTION */
/* ============================================ */
.faq-section-container {
  font-family: "Jost", sans-serif;
  background: #e6f0f3;
  color: #000;
  padding: 2rem 0;
}

.faq-content-wrapper {
  width: 60%;
  margin: 50px auto;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.faq-main-heading {
  text-align: center;
  font-size: 42px;
  margin-bottom: 30px;
  font-weight: 700;
}

.faq-item-box {
  border-bottom: 1px solid #ddd;
  padding: 20px 25px;
  background: #f9f9f9;
  text-align: left;
}

.faq-item-box.active {
  background: #ffffff;
}

.faq-question-text {
  font-size: 22px;
  font-weight: 600;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #2a2a2a;
}

.faq-toggle-icon {
  font-size: 30px;
  margin-right: 15px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-answer-content {
  font-size: 18px;
  margin-top: 15px;
  line-height: 1.6;
  color: #333;
  display: none;
}

/* ============================================ */
/* CTA BUTTONS - UNIFIED STYLES */
/* ============================================ */
.customCtaBtn,
.btn7f3k5,
.primary-cta-section,
.btn-cta-section,
.cta-button-section {
  background: linear-gradient(to bottom, #fddc5c, #e6c200);
  color: #1a252f;
  font-size: 28px;
  font-weight: bold;
  width: fit-content;
  padding: 15px 40px;
  border-radius: 12px;
  margin: 30px auto;
  box-shadow: 0 5px 0 #b8960a;
  text-align: center;
  font-family: "Jost", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: sway 0.5s ease-in-out infinite;
  border: none;
  display: inline-block;
  text-decoration: none;
}

.customCtaBtn:hover,
.btn7f3k5:hover,
.primary-cta-section:hover,
.btn-cta-section:hover,
.cta-button-section:hover {
  background: linear-gradient(to bottom, #e6c200, #ccaa00);
  transform: translateY(-3px);
  box-shadow: 0 8px 0 #b8960a;
  animation: none;
}

.customCtaBtn:active,
.btn7f3k5:active,
.primary-cta-section:active,
.btn-cta-section:active,
.cta-button-section:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0 #b8960a;
}

/* ============================================ */
/* ANIMATIONS */
/* ============================================ */
@keyframes sway {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

@keyframes formHighlight {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 15px rgba(59, 130, 246, 0.3);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

.form-highlight {
  animation: formHighlight 0.8s ease-in-out 3 !important;
}

/* ============================================ */
/* INPUT ERROR STYLES */
/* ============================================ */
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

.input-error {
  border-color: #c40138ff !important;
  animation: shake 0.3s ease-in-out;
}

/* ============================================ */
/* UTILITY CLASSES */
/* ============================================ */
html {
  scroll-behavior: smooth;
}

/* ============================================ */
/* RESPONSIVE DESIGN - TABLET (max-width: 1024px) */
/* ============================================ */
@media (max-width: 1024px) {
  .contentLayout_b5h2k {
    gap: 15px;
  }
  .videoSection_n8s3m {
    width: 55%;
  }
  .formSection_q2l8r {
    width: 45%;
  }
  .customContainer {
    padding: 0 2rem;
    padding-bottom: 40px;
  }
  .trainer-container-custom {
    flex-direction: column-reverse;
    text-align: center;
    margin: 20px auto;
    gap: 5px;
  }
  .trainer-text-custom,
  .trainer-image-custom {
    width: 100%;
  }
  .trainer-text-custom {
    text-align: left;
  }
  .t-body-custom {
    padding: 0.5rem 0;
  }
  .section-title-custom {
    margin-top: 10px;
    font-size: 30px;
  }
}

/* ============================================ */
/* RESPONSIVE DESIGN - MOBILE (max-width: 768px) */
/* ============================================ */
@media (max-width: 768px) {
  .video-section-m3n,
  .text-section-p6f {
    width: 100%;
  }
  .content-wrapper-r4t {
    flex-direction: column;
  }
  .contentLayout_b5h2k {
    flex-direction: column;
  }
  .videoSection_n8s3m,
  .formSection_q2l8r {
    width: 100%;
    margin-bottom: 25px;
  }
  .mainHeading_g9fjg {
    font-size: 32px;
  }
  .subtitleText_r4t7v {
    font-size: 24px;
  }
  .videoContainer_k9s2l iframe {
    width: 100%;
    max-width: 420px;
    height: 220px;
  }
  .customContainer {
    padding: 0 1rem;
    padding-bottom: 30px;
  }
  .customGrid {
    grid-template-columns: 1fr;
    gap: 15px;
    width: 95%;
  }
  .customBox {
    padding: 15px;
    font-size: 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .customBox input {
    margin-bottom: 10px;
  }
  .customSection {
    font-size: 18px;
  }
  .contentVideoSection {
    flex-direction: column;
    gap: 30px;
  }
  .textContent,
  .videoContainer {
    width: 100%;
  }
  .responsiveVideo {
    height: 250px;
  }
  .custom-gallery-container {
    padding: 20px 0;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid-container {
    grid-template-columns: 1fr;
  }
  .content-wrapper {
    width: 95%;
  }
  .testimonials-section {
    width: 95%;
    margin-top: 0px;
  }
  .testimonial-card {
    min-height: 120px;
  }
  .headingg9fjg {
    font-size: 28px;
    padding: 15px 0;
  }
  .gridp4m2q {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .itemr3t9s {
    padding: 20px;
    font-size: 18px;
  }
  .iconw5n1v {
    font-size: 28px;
    margin-right: 15px;
  }
  .b2x4y7z {
    width: 100%;
  }
  .i9m7n2v img {
    width: 100%;
  }
  .customCtaBtn,
  .btn7f3k5,
  .primary-cta-section,
  .btn-cta-section,
  .cta-button-section {
    font-size: 20px !important;
    padding: 12px 25px !important;
    width: 90% !important;
    margin: 20px auto !important;
  }
  .customSubTitle {
    font-size: 28px;
  }
  .faq-content-wrapper {
    width: 90%;
    margin: 30px auto;
  }
  .faq-main-heading {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .faq-item-box {
    padding: 15px 20px;
  }
  .faq-question-text {
    font-size: 18px;
  }
  .faq-toggle-icon {
    font-size: 24px;
    margin-right: 10px;
  }
  .faq-answer-content {
    font-size: 16px;
    margin-top: 10px;
  }
  .cta-button-section {
    width: 90%;
  }
  .h3g8j9d {
    font-size: 28px;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .b2x4y7z p {
    font-size: 18px;
  }
}

/* ============================================ */
/* RESPONSIVE DESIGN - SMALL MOBILE (max-width: 480px) */
/* ============================================ */
@media (max-width: 480px) {
  .alertBar_x8j3k {
    font-size: 18px;
    padding: 12px 10px;
  }
  .wrapper_7fn2d {
    width: 95%;
    padding: 15px 0;
  }
  .mainHeading_g9fjg {
    font-size: 26px;
    line-height: 1.2;
  }
  .subtitleText_r4t7v {
    font-size: 18px;
    line-height: 1.3;
  }
  .videoSection_n8s3m .sectionTitle_j7d4f {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .videoContainer_k9s2l iframe {
    height: 200px;
    max-width: 100%;
  }
  .infoContainer_w8h3q {
    font-size: 16px;
    gap: 0.8rem;
  }
  .infoContainer_w8h3q .infoItem_p3k9d {
    padding: 8px 12px;
  }
  .formSection_q2l8r {
    padding: 20px 15px;
    border-radius: 15px;
  }
  .formSection_q2l8r .formTitle_h4j8s {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .inputField_m2k9d {
    padding: 10px 12px;
    margin-bottom: 15px;
    font-size: 16px;
  }
  .submitButton_x8j3f {
    padding: 12px;
    font-size: 18px;
  }
  .image-display-wrapper {
    grid-template-columns: 1fr;
  }
  .headingg9fjg {
    font-size: 24px;
  }
  .itemr3t9s {
    padding: 15px;
    font-size: 16px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .iconw5n1v {
    margin-right: 0;
    font-size: 24px;
  }
  .containerx7d8k {
    width: 95%;
    margin: 20px auto;
  }
  .customSubTitle {
    font-size: 22px;
  }
  .customBox {
    padding: 12px;
    font-size: 15px;
  }
  .customSection {
    font-size: 16px;
  }
  .textContent {
    font-size: 16px;
  }
  .responsiveVideo {
    height: 200px;
  }
  .h3g8j9d {
    font-size: 24px;
  }
  .b2x4y7z p {
    font-size: 16px;
  }
  .t8k3p6q {
    font-size: 32px;
  }
  .customCtaBtn,
  .btn7f3k5,
  .primary-cta-section,
  .btn-cta-section,
  .cta-button-section {
    font-size: 16px !important;
    padding: 10px 20px !important;
    width: 95% !important;
  }
  .custom-heading-2 {
    font-size: 22px;
  }
  .feature-item {
    font-size: 16px;
    padding: 12px;
  }
  .sub-heading-text {
    font-size: 24px;
  }
  .description-text {
    font-size: 18px;
  }
  .section-title-custom {
    font-size: 28px;
    margin-top: 20px;
  }
  .trainer-text-custom h2 {
    font-size: 32px;
  }
  .trainer-text-custom {
    font-size: 16px;
  }
  .trainer-container-custom {
    padding: 0 20px;
    gap: 20px;
  }
  .faq-main-heading {
    font-size: 28px;
  }
  .faq-question-text {
    font-size: 16px;
  }
  .faq-answer-content {
    font-size: 14px;
  }
}
