body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.main-content {
  flex: 1;
  min-height: calc(100vh - 320px); /* Adjust 320px if footer is taller/shorter */
}
.site-footer {
  margin-top: auto;
}
@media (max-width: 599px) {
  .pricing-container {
    display: block !important;
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 auto !important;
    padding: 10px 0 20px 0 !important;
  }
  .pricing-card {
    width: 94vw !important;
    max-width: 98vw !important;
    margin: 0 auto 32px auto !important;
    display: block !important;
    box-sizing: border-box !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07) !important;
    border-radius: 14px !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    float: none !important;
    clear: both !important;
  }
}
@media (max-width: 599px) {
  .pricing-container {
    display: block !important;
  }
  .pricing-card {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 30px !important;
    display: block !important;
  }
}
/* FINAL OVERRIDE: Force grid for pricing-container above 600px */
@media (min-width: 600px) {
  .pricing-container {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    align-items: stretch !important;
    flex-direction: unset !important;
    flex-wrap: unset !important;
  }
  .pricing-card {
    max-width: 100% !important;
    margin: 0 !important;
    flex: unset !important;
  }
}
/* DEBUG: Test styles for iPad/tablet grid media query */
@media (min-width: 600px) and (max-width: 1200px) {
  .pricing-section .pricing-container {
    width: 100%;
    max-width: none;
    margin: 0;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    align-items: stretch !important;
    flex-direction: unset !important;
    flex-wrap: unset !important;
  }
  .pricing-section .pricing-card {
    max-width: 100% !important;
    margin: 0 !important;
    flex: unset !important;
  }
}
/* --- FORCE 3-COLUMN PRICING GRID ON IPAD/TABLET (LAST RULE) --- */
@media (min-width: 768px) and (max-width: 1024px) {
  .pricing-section .pricing-container {
    width: 100%;
    max-width: none;
    margin: 0;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    align-items: stretch !important;
    flex-direction: unset !important;
    flex-wrap: unset !important;
  }
  .pricing-section .pricing-card {
    max-width: 100% !important;
    margin: 0 !important;
    flex: unset !important;
  }
}
/* Force 3-column grid for pricing on iPad/tablet (override flex) */
@media (min-width: 768px) and (max-width: 1024px) {
  .pricing-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #f8fbff;
  }
  .pricing-section .pricing-container {
    width: 100%;
    max-width: none;
    margin: 0;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    align-items: stretch !important;
    flex-direction: unset !important;
    flex-wrap: unset !important;
  }
  .pricing-section .pricing-card {
    max-width: 100% !important;
    margin: 0 !important;
    flex: unset !important;
  }
}
/* Watch Training Live button cursor */
.btn.btn-primary[onclick*="openLiveModal"] {
  cursor: pointer;
}
/* MODAL STYLES */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,41,59,0.18);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.modal-content {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  padding: 32px 28px;
  position: relative;
  max-width: 400px;
  width: 100%;
  margin: 0;
  top: 0;
  left: 0;
  transform: none;
}
.modal-content input[type="email"],
.modal-content input[type="password"] {
  padding: 10px 12px;
  border-radius: 7px;
  border: 1px solid #cbd5e1;
  margin-bottom: 0;
}
.modal-content button.btn {
  margin-top: 6px;
}
/* Main CSS */

/* ============================
   GLOBAL MOBILE OPTIMIZATION
============================ */

/* RESET */
* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

/* CONTAINERS */
.section-container,
.hero-container,
.header-container,
.footer-container {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

/* RESPONSIVE TEXT */
h1 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}

p {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  line-height: 1.7;
}

/* IMAGES */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.hero-image {
  border-radius: 1.25rem;
  /* You can adjust the value for more/less roundness */
  overflow: hidden;
  display: block;
}

/* FLEX STACKING */
@media (max-width: 992px) {
  .hero-container,
  .two-column,
  .grid-3,
  .grid-4 {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
}

/* SMALL DEVICES */
@media (max-width: 768px) {
  .header-nav ul {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
    gap: 14px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {
  .section-container,
  .hero-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: 1.7rem;
  }

  p {
    font-size: 0.95rem;
  }
}

/* =========================
   TRUST SECTION
========================= */

.trust-section {
  background: #ffffff;
  padding: 60px 20px;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

/* TRUST ITEM */
.trust-item {
  background: #f8fbff;
  padding: 30px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* ICON */
.trust-icon {
  font-size: 2.8rem;
  margin-bottom: 15px;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 4.5rem;
}

/* TITLE */
.trust-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0b1c2d;
  margin-bottom: 10px;
}

/* TEXT */
.trust-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .trust-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .trust-container {
    grid-template-columns: 1fr;
  }
}

/* =========================
   WHAT YOU WILL LEARN
========================= */

.learn-section {
  background: #f8fbff;
  padding: 80px 20px;
}

.learn-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* SECTION HEADER */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0b1c2d;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

/* LEARN GRID */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.learn-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.learn-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* ICON */
.learn-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 4.5rem;
  margin-bottom: 18px;
}

/* TITLE */
.learn-card h3 {
  font-size: 1.3rem;
  color: #0b1c2d;
  margin-bottom: 12px;
  font-weight: 600;
}

/* TEXT */
.learn-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .learn-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .learn-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

/* =========================
   6-DAY BOOTCAMP CURRICULUM
========================= */

.curriculum-section {
  background: #ffffff;
  padding: 80px 20px;
}

.curriculum-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* CURRICULUM GRID */
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* DAY CARD */
.day-card {
  background: #f8fbff;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.day-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* DAY BADGE */
.day-badge {
  position: absolute;
  top: -14px;
  left: 25px;
  background: #00C897;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* CARD CONTENT */
.day-card h3 {
  font-size: 1.35rem;
  margin: 25px 0 15px;
  color: #0b1c2d;
  font-weight: 600;
}

.day-card ul {
  padding-left: 18px;
}

.day-card ul li {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .curriculum-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .curriculum-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   LIVE FINTECH PROJECT
========================= */

.project-section {
  background: #f6f9ff;
  padding: 90px 20px;
}

.project-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* PROJECT LAYOUT */
.project-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.project-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* DETAILS */
.project-details h3 {
  font-size: 2rem;
  color: #0b1c2d;
  margin-bottom: 15px;
}

.project-details p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* FEATURES LIST */
.project-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.project-features li {
  font-size: 0.95rem;
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
  color: #333;
}

.project-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00C897;
  font-weight: bold;
}

/* NOTE */
.project-note {
  background: #e9f7f3;
  padding: 18px 20px;
  border-left: 5px solid #00C897;
  border-radius: 10px;
  font-size: 0.95rem;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .project-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .project-features li {
    text-align: left;
  }
}

/* =========================
   WHO THIS BOOTCAMP IS FOR
========================= */

.audience-section {
  background: #ffffff;
  padding: 80px 20px;
}

.audience-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* GRID */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.audience-card {
  background: #f8fbff;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* ICON */
.audience-icon {
  font-size: 3rem;
  margin-bottom: 18px;
}

/* TITLE */
.audience-card h3 {
  font-size: 1.25rem;
  color: #0b1c2d;
  margin-bottom: 12px;
  font-weight: 600;
}

/* TEXT */
.audience-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   HOW THE BOOTCAMP WORKS
========================= */

.bootcamp-steps-section {
  background: #f9f9f9;
  padding: 70px 20px;
  text-align: center;
}

.bootcamp-steps-section .section-header h2 {
  font-size: 2rem;
  color: #0b1c2d;
  margin-bottom: 12px;
}

.bootcamp-steps-section .section-header p {
  font-size: 1rem;
  color: #4b4b4b;
  margin-bottom: 50px;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.step-item {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
}

.step-item img {
  width: 100px;
  height: 100px;
  margin-bottom: 18px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

.step-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #0b1c2d;
}

.step-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b4b4b;
}

.step-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}

/* HOW IT WORKS SECTION */
.how-it-works-section {
  background: linear-gradient(135deg, #0b1c2d, #00c897);
  padding: 90px 20px;
  color: #fff;
}

.how-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* STEPS GRID */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* STEP CARD */
.step-card {
  background: rgba(255,255,255,0.1);
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.3);
}

/* STEP NUMBER */
.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: #ffffff;
  color: #00c897;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TITLES & TEXT */
.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   TESTIMONIALS SECTION
========================= */

.testimonials-section {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.testimonials-section .section-header h2 {
  font-size: 2rem;
  color: #0b1c2d;
  margin-bottom: 12px;
}

.testimonials-section .section-header p {
  font-size: 1rem;
  color: #4b4b4b;
  margin-bottom: 50px;
}

.testimonials-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  flex: 1 1 300px;
  background: #f9f9f9;
  padding: 30px 25px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: left;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 600;
  color: #0b1c2d;
}

.testimonial-role {
  font-size: 0.85rem;
  color: #777;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.12);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .testimonials-container {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    max-width: 90%;
  }
}

/* =========================
   PRICING SECTION
========================= */

.pricing-section {
  background: #f0f7f5;
  padding: 80px 20px;
  text-align: center;
}

.pricing-section .section-header h2 {
  font-size: 2rem;
  color: #0b1c2d;
  margin-bottom: 12px;
}

.pricing-section .section-header p {
  font-size: 1rem;
  color: #4b4b4b;
  margin-bottom: 60px;
}


.pricing-container {
  max-width: 1200px;
  margin: auto;
  gap: 30px;
  align-items: stretch;
}

@media (min-width: 600px) {
  .pricing-container {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    align-items: stretch !important;
    flex-direction: unset !important;
    flex-wrap: unset !important;
  }
  .pricing-card {
    max-width: 100% !important;
    margin: 0 !important;
    flex: unset !important;
  }
}

.pricing-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card h3 {
  font-size: 1.4rem;
  color: #0b1c2d;
  margin-bottom: 8px;
}

.pricing-subtitle {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 25px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 30px;
}

.pricing-card ul li {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: #333;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* FEATURED (ADVANCE) */
.pricing-featured {
  background: linear-gradient(135deg, #00c897, #0b1c2d);
  color: #ffffff;
  transform: scale(1.05);
}

.pricing-featured h3,
.pricing-featured p,
.pricing-featured ul li {
  color: #ffffff;
}

.pricing-featured .btn-primary {
  background: #ffffff;
  color: #0b1c2d;
}

/* Pricing Advance column styles */
.pricing-featured .old-price {
  text-decoration: line-through;
  color: #fff;
  font-size: 1.1rem;
  margin-right: 0.5rem;
  display: block;
  margin-bottom: 0.2rem;
}
.pricing-featured .new-price {
  font-weight: bold;
  color: #FFD600;
  font-size: 1.6rem;
  letter-spacing: 1px;
  display: block;
}
.btn-advance {
  background: #FFD600;
  color: #1B5E20;
  font-weight: 600;
  border-radius: 0.5rem;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: background 0.2s, color 0.2s;
  border: none;
  outline: none;
  display: inline-block;
  margin-top: 1.2rem;
}
.btn-advance:hover,
.btn-advance:focus {
  background: #1B5E20;
  color: #FFD600;
  border: 2px solid #fff;
}

/* REGULAR PRICE */
.regular-price {
  font-weight: bold;
  color: #1B5E20;
  font-size: 1.5rem;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.5rem;
}
.btn-regular {
  background: #1B5E20;
  color: #fff;
  font-weight: 600;
  border-radius: 0.5rem;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: background 0.2s, color 0.2s;
  border: none;
  outline: none;
  display: inline-block;
  margin-top: 1.2rem;
}
.btn-regular:hover,
.btn-regular:focus {
  background: #fff;
  color: #FFD600;
  border: 2px solid #1B5E20;
}

/* INTERMEDIATE PRICE */
.intermediate-price {
  font-weight: bold;
  color: #1B5E20;
  font-size: 1.5rem;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.5rem;
}
.btn-intermediate {
  background: #1B5E20;
  color: #fff;
  font-weight: 600;
  border-radius: 0.5rem;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: background 0.2s, color 0.2s;
  border: none;
  outline: none;
  display: inline-block;
  margin-top: 1.2rem;
}
.btn-intermediate:hover,
.btn-intermediate:focus {
  background: #fff;
  color: #FFD600;
  border: 2px solid #1B5E20;
}

/* =========================
   REGISTER CTA SECTION
========================= */

.register-section {
  background: linear-gradient(135deg, #00c897, #0b1c2d);
  padding: 90px 20px;
  color: #ffffff;
}

.register-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.register-content {
  flex: 1;
}

.register-content h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.register-content p {
  font-size: 1rem;
  margin-bottom: 25px;
}

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

.register-content ul li {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

/* FORM */
.register-form {
  flex: 1;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  color: #000;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.register-form input,
.register-form select {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

.register-form button {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  border-radius: 8px;
}

.form-note {
  font-size: 0.8rem;
  margin-top: 10px;
  text-align: center;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .register-container {
    flex-direction: column;
  }

  .register-content {
    text-align: center;
  }
}

/* =========================
   FOOTER SECTION
========================= */

.site-footer {
  background: linear-gradient(135deg, #00c897, #0b1c2d);
  color: #ffffff;
  padding: 70px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #e0f7f3;
  font-size: 0.9rem;
  transition: color 0.3s ease, text-decoration 0.3s;
  text-decoration: none;
}

.footer-col ul li a:hover,
.footer-col ul li a:focus {
  color: #ffffff;
  text-decoration: underline;
}

/* BRAND COLUMN */
.footer-logo {
  width: 160px;
  margin-bottom: 15px;
}

.footer-mission,
.footer-vision {
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: #e6fdf8;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-socials img {
  width: 22px;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.footer-socials img:hover {
  opacity: 1;
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 0.85rem;
  color: #d8fff5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}

.hero-right {
  border-radius: 1.25rem;
  overflow: hidden;
  /* Optional: add a subtle box-shadow for depth */
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
}

.how-it-works-section .section-header h2,
.how-it-works-section .section-header p {
  color: #fff;
}

@media (max-width: 992px) {
  .pricing-container {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .pricing-card {
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .pricing-section {
    padding: 40px 6px;
  }
  .pricing-card {
    padding: 24px 10px;
    border-radius: 12px;
  }
  .pricing-card h3 {
    font-size: 1.1rem;
  }
  .pricing-subtitle {
    font-size: 0.9rem;
  }
  .pricing-card ul li {
    font-size: 0.9rem;
  }
  .btn-advance,
  .btn-regular,
  .btn-intermediate {
    width: 100%;
    padding: 0.7rem 0;
    font-size: 1rem;
  }
}
