@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&family=Montserrat:wght@400;700&display=swap');

body.dark-theme {
  background: #0d1117;
  color: #f5f6fa;
  font-family: 'Inter', 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Responsive improvements */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3rem;
  background: #0d1117;
  box-shadow: none;
  flex-wrap: wrap;
}

.logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.logo img {
  margin-right: 10px;
}

nav {
  display: flex;
  flex-wrap: wrap;
}

.auth-buttons {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

/* Make sure all containers have proper box-sizing */
.about-container, .contact-container, .payment-container, 
.order-container, .product-details, .payment-method,
.form-section, .product-card {
  box-sizing: border-box;
}

/* Ensure images are responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Ensure form elements are responsive */
input, textarea, button, select {
  max-width: 100%;
}

/* Ensure tables are responsive */
table {
  width: 100%;
  overflow-x: auto;
  display: block;
}

/* Ensure iframe (videos) are responsive */
iframe {
  max-width: 100%;
  height: auto;
}
nav a {
  color: #f5f6fa;
  text-decoration: none;
  margin: 0 1.2rem;
  font-weight: 600;
  font-size: 1rem;
  text-transform: capitalize;
  transition: color 0.2s;
}
nav a.active, nav a:hover {
  color: #FFC72C;
}
.auth-buttons {
  display: flex;
  gap: 0.7rem;
}
.auth-buttons a {
  padding: 0.5rem 1.3rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  background: none;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.auth-buttons .login-btn {
  border: 1.5px solid #FFC72C;
  color: #FFC72C;
  background: none;
}
.auth-buttons .signup-btn {
  background: #FFC72C;
  color: #181c27;
  border: none;
}
.auth-buttons .signup-btn:hover, .auth-buttons .login-btn:hover {
  background: #FFC72C;
  color: #181c27;
}
.hero {
  text-align: center;
  padding: 4rem 2rem 2rem 2rem;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.glow-text, .hero h1 {
  font-size: 2.5rem;
  font-family: 'Inter', sans-serif;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.highlight {
  color: #FFC72C;
  font-weight: 900;
}
.subtitle {
  font-size: 1.2rem;
  color: #bfc9d1;
  margin-bottom: 2rem;
  font-weight: 500;
}
.cta-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: #181c27;
  background: #FFC72C;
  border: none;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px #0002;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
  background: #e6b200;
  color: #fff;
}
.featured-courses {
  padding: 2.5rem 2rem 2rem 2rem;
  background: none;
}
.section-title {
  text-align: center;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  justify-items: center;
  align-items: stretch;
}
@media (min-width: 1100px) {
  .courses-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.course-card {
  background: #181c27;
  border-radius: 16px;
  box-shadow: 0 2px 16px #0003;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  border: 1.5px solid #232a36;
}
.course-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 4px 32px #0005;
  border-color: #FFC72C;
}
.course-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 1rem;
  background: #232a36;
  border-radius: 8px;
}
.course-card h3 {
  color: #FFC72C;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}
.course-card p {
  color: #bfc9d1;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.buy-btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #181c27;
  background: #FFC72C;
  border: none;
  border-radius: 8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.buy-btn:hover {
  background: #e6b200;
  color: #fff;
}
.join-section {
  text-align: center;
  padding: 2.5rem 2rem 2.5rem 2rem;
  background: none;
  color: #fff;
  border-radius: 0;
  margin-top: 2rem;
  box-shadow: none;
}
.join-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}
.footer {
  background: #181c27;
  color: #bfc9d1;
  padding: 2rem 0 1rem 0;
  text-align: center;
  box-shadow: none;
  margin-top: 2rem;
}

/* New Footer Styles */
.site-footer {
  background-color: #0d1117;
  padding: 2rem 0;
  border-top: 1px solid #1e293b;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #FFC72C;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-social a {
  color: #94a3b8;
  font-size: 1.5rem;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #FFC72C;
}

.footer-bottom {
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 400;
}

@media (max-width: 768px) {
  .footer-links {
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .footer-social {
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .footer-links a {
    font-size: 0.8rem;
  }
  
  .footer-social a {
    font-size: 1.25rem;
  }
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  gap: 1rem;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
.footer-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: #FFC72C;
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-links a {
  color: #bfc9d1;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
  padding: 0 0.5rem;
  position: relative;
  display: inline-block;
}

.footer-links a:not(:last-child)::after {
  content: 'â€¢';
  margin-left: 1rem;
  color: #4a5568;
  font-weight: 400;
  pointer-events: none;
}

.footer-links a:hover {
  color: #FFC72C;
}

.footer-social a {
  color: #bfc9d1;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #FFC72C;
}
.footer-bottom {
  color: #bfc9d1;
  font-size: 0.8rem;
  margin-top: 1rem;
  text-align: center;
  width: 100%;
  padding-top: 1rem;
  border-top: 1px solid #2d3748;
  opacity: 0.8;
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .navbar {
    flex-direction: column;
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 2.5rem 1rem 1.5rem 1rem;
  }
  .featured-courses {
    padding: 1.5rem 1rem 1rem 1rem;
  }
  .join-section {
    padding: 1.5rem 1rem 1.5rem 1rem;
  }
  .courses-grid {
    gap: 1rem;
  }
}

/* FAQ, Card, and Section Styles for Reference Look */
.faq-section {
  max-width: 700px;
  margin: 3rem auto;
  background: #181c27;
  border-radius: 16px;
  box-shadow: 0 2px 16px #0003;
  padding: 2.5rem 2rem;
}
.faq-title {
  font-size: 1.4rem;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-align: center;
}
.faq-question {
  color: #fff;
  font-weight: 700;
  margin: 1.2rem 0 0.5rem 0;
  cursor: pointer;
  font-size: 1.1rem;
}
.faq-answer {
  color: #bfc9d1;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: none;
}
.faq-question.open + .faq-answer {
  display: block;
}

/* Layout and Alignment Improvements */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
section {
  margin-bottom: 2.5rem;
}
.featured-courses, .join-section, .about-content, .contact-content, .faq-section {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.courses-grid {
  justify-items: center;
  align-items: stretch;
}
.course-card {
  margin: 0 auto;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.course-card img {
  align-self: center;
}
.about-content, .contact-content {
  background: #181c27 !important;
  border-radius: 16px !important;
  box-shadow: 0 2px 16px #0003 !important;
  padding: 2.5rem 2rem !important;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.contact-content form {
  max-width: 400px;
  margin: 0 auto;
}
.contact-content form input,
.contact-content form textarea {
  width: 100%;
  box-sizing: border-box;
}
.contact-content .social-icon {
  margin-bottom: 0.5rem;
}
.footer-content {
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
}
.footer-links, .footer-social {
  align-items: flex-start;
}
@media (max-width: 900px) {
  main {
    max-width: 100%;
    padding: 0 0.5rem;
  }
  .featured-courses, .join-section, .about-content, .contact-content, .faq-section {
    max-width: 100%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (max-width: 600px) {
  .about-content, .contact-content {
    padding: 1.2rem 0.5rem !important;
  }
  .footer-content {
    gap: 1.2rem;
  }
}

/* Pricing Section Styles */
.pricing-section {
  margin: 3rem auto 2rem auto;
  text-align: center;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.pricing-card {
  background: #fff;
  color: #181c27;
  border-radius: 18px;
  box-shadow: 0 4px 32px #a084f933, 0 1.5px 0 #a084f9;
  padding: 2.2rem 1.5rem 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 420px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pricing-card.featured {
  background: linear-gradient(135deg, #a084f9 0%, #c7a6ff 100%);
  color: #fff;
  box-shadow: 0 4px 32px #a084f966, 0 1.5px 0 #a084f9;
}
.pricing-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #181c27;
  text-transform: capitalize;
}
.pricing-card.featured .pricing-title {
  color: #fff;
}
.pricing-band {
  width: 100%;
  margin: 0 auto 1.5rem auto;
  padding: 0.7rem 0;
  border-radius: 32px;
  font-size: 2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #a084f9;
  color: #fff;
  box-shadow: 0 0 24px #a084f9cc, 0 0 48px #a084f966;
  position: relative;
  text-shadow: 0 0 8px #fff, 0 0 16px #a084f9;
  letter-spacing: 1px;
}
.glow-purple {
  background: linear-gradient(90deg, #a084f9 60%, #c7a6ff 100%);
  box-shadow: 0 0 32px #a084f9cc, 0 0 64px #c7a6ff99, 0 0 8px #fff;
  color: #fff;
}
.glow-red {
  background: linear-gradient(90deg, #ff3b3b 60%, #ffb6b6 100%);
  box-shadow: 0 0 32px #ff3b3bcc, 0 0 64px #ffb6b699, 0 0 8px #fff2;
  color: #fff;
}
.glow-blue {
  background: linear-gradient(90deg, #3b82ff 60%, #b6d0ff 100%);
  box-shadow: 0 0 32px #3b82ffcc, 0 0 64px #b6d0ff99, 0 0 8px #fff2;
  color: #fff;
}
.glow-gold {
  background: linear-gradient(90deg, #FFC72C 60%, #ffe599 100%);
  box-shadow: 0 0 32px #FFC72Ccc, 0 0 64px #ffe59999, 0 0 8px #fff2;
  color: #181c27;
}
.glow-green {
  background: linear-gradient(90deg, #22c55e 60%, #bbf7d0 100%);
  box-shadow: 0 0 32px #22c55ecc, 0 0 64px #bbf7d099, 0 0 8px #fff2;
  color: #fff;
}
.pricing-currency, .pricing-amount, .pricing-unit {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 2rem;
}
.pricing-unit {
  font-size: 1.1rem;
  font-weight: 700;
  margin-left: 0.5rem;
}
.pricing-desc {
  font-size: 1rem;
  color: #181c27;
  margin: 1.2rem 0 2rem 0;
  font-weight: 500;
  text-align: center;
}
.pricing-card.featured .pricing-desc {
  color: #fff;
}
.pricing-desc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-desc li {
  margin-bottom: 0.5rem;
  color: #181c27;
  font-weight: 500;
}
.pricing-card.featured .pricing-desc li {
  color: #fff;
}
.pricing-btn {
  display: inline-block;
  margin-top: auto;
  padding: 0.8rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #181c27;
  background: #FFC72C;
  border: none;
  border-radius: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px #FFC72C44, 0 0 16px #fff2;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.pricing-btn:hover {
  background: #a084f9;
  color: #fff;
  box-shadow: 0 0 32px #a084f9cc, 0 0 64px #c7a6ff99;
}
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card {
    min-height: 0;
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
  }
}

/* CTA Courses Section Styles */
.cta-courses-section {
  margin: 3rem auto 2rem auto;
  text-align: center;
}
.cta-courses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .cta-courses-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.cta-course-card {
  background: linear-gradient(135deg, #181c27 80%, #232a36 100%);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px #0003, 0 0 0 2px #FFC72C44;
  padding: 2.2rem 1.5rem 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 420px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s, border 0.2s;
  border: 2px solid transparent;
}
.cta-course-card:hover {
  box-shadow: 0 8px 48px #FFC72C55, 0 0 0 4px #FFC72C88;
  border: 2px solid #FFC72C;
  transform: translateY(-6px) scale(1.03);
}
.cta-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #FFC72C33;
}
.cta-price-row {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  color: #FFC72C;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-shadow: 0 2px 8px #FFC72C33;
}
.cta-old-price {
  color: #bfc9d1;
  font-size: 1.3rem;
  text-decoration: line-through;
  opacity: 0.7;
}
.cta-price {
  color: #FFC72C;
  font-size: 2.2rem;
  font-weight: 900;
}
.cta-unit {
  font-size: 1.1rem;
  font-weight: 700;
  margin-left: 0.3rem;
}
.cta-desc {
  font-size: 1.05rem;
  color: #fff;
  margin: 1.2rem 0 2rem 0;
  font-weight: 500;
  text-align: center;
}
.cta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
  width: 100%;
  max-width: 340px;
}
.cta-list li {
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.3rem;
  line-height: 1.4;
  text-shadow: 0 2px 8px #FFC72C33;
}
.cta-list li:before {
  content: '\2714';
  position: absolute;
  left: 0.2rem;
  color: #FFC72C;
  font-size: 1.5rem;
  font-weight: bold;
  filter: drop-shadow(0 0 6px #FFC72C99);
}
.cta-btn-main {
  display: inline-block;
  margin-top: auto;
  padding: 1.1rem 2.7rem;
  font-size: 1.2rem;
  font-weight: 900;
  color: #181c27;
  background: #FFC72C;
  border: none;
  border-radius: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 16px #FFC72C88, 0 0 24px #fff2;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.cta-btn-main:hover {
  background: #ffe599;
  color: #181c27;
  box-shadow: 0 0 32px #FFC72Ccc, 0 0 64px #ffe59999;
  transform: scale(1.05);
}
@media (max-width: 900px) {
  .cta-courses-grid {
    grid-template-columns: 1fr;
  }
}

/* Lock-in Section Styles */
.lockin-section {
  margin: 4rem auto 2.5rem auto;
  text-align: center;
  max-width: 700px;
}
.lockin-headline {
  font-family: 'Inter', sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}
.lockin-sub {
  font-size: 1.3rem;
  color: #bfc9d1;
  margin-bottom: 2.5rem;
  font-weight: 500;
}
.lockin-warning {
  margin: 0 auto 1.5rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lockin-icon {
  font-size: 3.5rem;
  color: #FFC72C;
  filter: drop-shadow(0 0 24px #FFC72Ccc);
  text-shadow: 0 0 24px #FFC72C99, 0 0 48px #fff2;
}
.lockin-price {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.lockin-price .gold {
  color: #FFC72C;
  text-shadow: 0 0 16px #FFC72C99, 0 0 32px #fff2;
}
.lockin-desc {
  font-size: 1.15rem;
  color: #bfc9d1;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.lockin-desc2 {
  font-size: 1.15rem;
  color: #bfc9d1;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  gap: 1rem;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
.footer-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: #FFC72C;
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-links a {
  color: #bfc9d1;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
  padding: 0 0.5rem;
  position: relative;
  display: inline-block;
}

.footer-links a:not(:last-child)::after {
  content: 'â€¢';
  margin-left: 1rem;
  color: #4a5568;
  font-weight: 400;
  pointer-events: none;
}

.footer-links a:hover {
  color: #FFC72C;
}

.footer-social a {
  color: #bfc9d1;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #FFC72C;
}
.footer-bottom {
  color: #bfc9d1;
  font-size: 0.8rem;
  margin-top: 1rem;
  text-align: center;
  width: 100%;
  padding-top: 1rem;
  border-top: 1px solid #2d3748;
  opacity: 0.8;
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .navbar {
    flex-direction: column;
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 2.5rem 1rem 1.5rem 1rem;
  }
  .featured-courses {
    padding: 1.5rem 1rem 1rem 1rem;
  }
  .join-section {
    padding: 1.5rem 1rem 1.5rem 1rem;
  }
  .courses-grid {
    gap: 1rem;
  }
}

/* FAQ, Card, and Section Styles for Reference Look */
.faq-section {
  max-width: 700px;
  margin: 3rem auto;
  background: #181c27;
  border-radius: 16px;
  box-shadow: 0 2px 16px #0003;
  padding: 2.5rem 2rem;
}
.faq-title {
  font-size: 1.4rem;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-align: center;
}
.faq-question {
  color: #fff;
  font-weight: 700;
  margin: 1.2rem 0 0.5rem 0;
  cursor: pointer;
  font-size: 1.1rem;
}
.faq-answer {
  color: #bfc9d1;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: none;
}
.faq-question.open + .faq-answer {
  display: block;
}

/* Layout and Alignment Improvements */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
section {
  margin-bottom: 2.5rem;
}
.featured-courses, .join-section, .about-content, .contact-content, .faq-section {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.courses-grid {
  justify-items: center;
  align-items: stretch;
}
.course-card {
  margin: 0 auto;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.course-card img {
  align-self: center;
}
.about-content, .contact-content {
  background: #181c27 !important;
  border-radius: 16px !important;
  box-shadow: 0 2px 16px #0003 !important;
  padding: 2.5rem 2rem !important;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.contact-content form {
  max-width: 400px;
  margin: 0 auto;
}
.contact-content form input,
.contact-content form textarea {
  width: 100%;
  box-sizing: border-box;
}
.contact-content .social-icon {
  margin-bottom: 0.5rem;
}
.footer-content {
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
}
.footer-links, .footer-social {
  align-items: flex-start;
}
@media (max-width: 900px) {
  main {
    max-width: 100%;
    padding: 0 0.5rem;
  }
  .featured-courses, .join-section, .about-content, .contact-content, .faq-section {
    max-width: 100%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (max-width: 600px) {
  .about-content, .contact-content {
    padding: 1.2rem 0.5rem !important;
  }
  .footer-content {
    gap: 1.2rem;
  }
}

/* Pricing Section Styles */
.pricing-section {
  margin: 3rem auto 2rem auto;
  text-align: center;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.pricing-card {
  background: #fff;
  color: #181c27;
  border-radius: 18px;
  box-shadow: 0 4px 32px #a084f933, 0 1.5px 0 #a084f9;
  padding: 2.2rem 1.5rem 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 420px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pricing-card.featured {
  background: linear-gradient(135deg, #a084f9 0%, #c7a6ff 100%);
  color: #fff;
  box-shadow: 0 4px 32px #a084f966, 0 1.5px 0 #a084f9;
}
.pricing-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #181c27;
  text-transform: capitalize;
}
.pricing-card.featured .pricing-title {
  color: #fff;
}
.pricing-band {
  width: 100%;
  margin: 0 auto 1.5rem auto;
  padding: 0.7rem 0;
  border-radius: 32px;
  font-size: 2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #a084f9;
  color: #fff;
  box-shadow: 0 0 24px #a084f9cc, 0 0 48px #a084f966;
  position: relative;
  text-shadow: 0 0 8px #fff, 0 0 16px #a084f9;
  letter-spacing: 1px;
}
.glow-purple {
  background: linear-gradient(90deg, #a084f9 60%, #c7a6ff 100%);
  box-shadow: 0 0 32px #a084f9cc, 0 0 64px #c7a6ff99, 0 0 8px #fff;
  color: #fff;
}
.glow-red {
  background: linear-gradient(90deg, #ff3b3b 60%, #ffb6b6 100%);
  box-shadow: 0 0 32px #ff3b3bcc, 0 0 64px #ffb6b699, 0 0 8px #fff2;
  color: #fff;
}
.glow-blue {
  background: linear-gradient(90deg, #3b82ff 60%, #b6d0ff 100%);
  box-shadow: 0 0 32px #3b82ffcc, 0 0 64px #b6d0ff99, 0 0 8px #fff2;
  color: #fff;
}
.glow-gold {
  background: linear-gradient(90deg, #FFC72C 60%, #ffe599 100%);
  box-shadow: 0 0 32px #FFC72Ccc, 0 0 64px #ffe59999, 0 0 8px #fff2;
  color: #181c27;
}
.glow-green {
  background: linear-gradient(90deg, #22c55e 60%, #bbf7d0 100%);
  box-shadow: 0 0 32px #22c55ecc, 0 0 64px #bbf7d099, 0 0 8px #fff2;
  color: #fff;
}
.pricing-currency, .pricing-amount, .pricing-unit {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 2rem;
}
.pricing-unit {
  font-size: 1.1rem;
  font-weight: 700;
  margin-left: 0.5rem;
}
.pricing-desc {
  font-size: 1rem;
  color: #181c27;
  margin: 1.2rem 0 2rem 0;
  font-weight: 500;
  text-align: center;
}
.pricing-card.featured .pricing-desc {
  color: #fff;
}
.pricing-desc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-desc li {
  margin-bottom: 0.5rem;
  color: #181c27;
  font-weight: 500;
}
.pricing-card.featured .pricing-desc li {
  color: #fff;
}
.pricing-btn {
  display: inline-block;
  margin-top: auto;
  padding: 0.8rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #181c27;
  background: #FFC72C;
  border: none;
  border-radius: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px #FFC72C44, 0 0 16px #fff2;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.pricing-btn:hover {
  background: #a084f9;
  color: #fff;
  box-shadow: 0 0 32px #a084f9cc, 0 0 64px #c7a6ff99;
}
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card {
    min-height: 0;
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
  }
}

/* CTA Courses Section Styles */
.cta-courses-section {
  margin: 3rem auto 2rem auto;
  text-align: center;
}
.cta-courses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .cta-courses-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.cta-course-card {
  background: linear-gradient(135deg, #181c27 80%, #232a36 100%);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px #0003, 0 0 0 2px #FFC72C44;
  padding: 2.2rem 1.5rem 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 420px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s, border 0.2s;
  border: 2px solid transparent;
}
.cta-course-card:hover {
  box-shadow: 0 8px 48px #FFC72C55, 0 0 0 4px #FFC72C88;
  border: 2px solid #FFC72C;
  transform: translateY(-6px) scale(1.03);
}
.cta-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #FFC72C33;
}
.cta-price-row {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  color: #FFC72C;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-shadow: 0 2px 8px #FFC72C33;
}
.cta-old-price {
  color: #bfc9d1;
  font-size: 1.3rem;
  text-decoration: line-through;
  opacity: 0.7;
}
.cta-price {
  color: #FFC72C;
  font-size: 2.2rem;
  font-weight: 900;
}
.cta-unit {
  font-size: 1.1rem;
  font-weight: 700;
  margin-left: 0.3rem;
}
.cta-desc {
  font-size: 1.05rem;
  color: #fff;
  margin: 1.2rem 0 2rem 0;
  font-weight: 500;
  text-align: center;
}
.cta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
  width: 100%;
  max-width: 340px;
}
.cta-list li {
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.3rem;
  line-height: 1.4;
  text-shadow: 0 2px 8px #FFC72C33;
}
.cta-list li:before {
  content: '\2714';
  position: absolute;
  left: 0.2rem;
  color: #FFC72C;
  font-size: 1.5rem;
  font-weight: bold;
  filter: drop-shadow(0 0 6px #FFC72C99);
}
.cta-btn-main {
  display: inline-block;
  margin-top: auto;
  padding: 1.1rem 2.7rem;
  font-size: 1.2rem;
  font-weight: 900;
  color: #181c27;
  background: #FFC72C;
  border: none;
  border-radius: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 16px #FFC72C88, 0 0 24px #fff2;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.cta-btn-main:hover {
  background: #ffe599;
  color: #181c27;
  box-shadow: 0 0 32px #FFC72Ccc, 0 0 64px #ffe59999;
  transform: scale(1.05);
}
@media (max-width: 900px) {
  .cta-courses-grid {
    grid-template-columns: 1fr;
  }
}

/* Lock-in Section Styles */
.lockin-section {
  margin: 4rem auto 2.5rem auto;
  text-align: center;
  max-width: 700px;
}
.lockin-headline {
  font-family: 'Inter', sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}
.lockin-sub {
  font-size: 1.3rem;
  color: #bfc9d1;
  margin-bottom: 2.5rem;
  font-weight: 500;
}
.lockin-warning {
  margin: 0 auto 1.5rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lockin-icon {
  font-size: 3.5rem;
  color: #FFC72C;
  filter: drop-shadow(0 0 24px #FFC72Ccc);
  text-shadow: 0 0 24px #FFC72C99, 0 0 48px #fff2;
}
.lockin-price {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.lockin-price .gold {
  color: #FFC72C;
  text-shadow: 0 0 16px #FFC72C99, 0 0 32px #fff2;
}
.lockin-desc {
  font-size: 1.15rem;
  color: #bfc9d1;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.lockin-desc2 {
  font-size: 1.15rem;
  color: #bfc9d1;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  gap: 1rem;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
.footer-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: #FFC72C;
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-links a {
  color: #bfc9d1;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
  padding: 0 0.5rem;
  position: relative;
  display: inline-block;
}

.footer-links a:not(:last-child)::after {
  content: 'â€¢';
  margin-left: 1rem;
  color: #4a5568;
  font-weight: 400;
  pointer-events: none;
}

.footer-links a:hover {
  color: #FFC72C;
}

.footer-social a {
  color: #bfc9d1;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #FFC72C;
}
.footer-bottom {
  color: #bfc9d1;
  font-size: 0.8rem;
  margin-top: 1rem;
  text-align: center;
  width: 100%;
  padding-top: 1rem;
  border-top: 1px solid #2d3748;
  opacity: 0.8;
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .navbar {
    flex-direction: column;
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 2.5rem 1rem 1.5rem 1rem;
  }
  .featured-courses {
    padding: 1.5rem 1rem 1rem 1rem;
  }
  .join-section {
    padding: 1.5rem 1rem 1.5rem 1rem;
  }
  .courses-grid {
    gap: 1rem;
  }
}

/* FAQ, Card, and Section Styles for Reference Look */
.faq-section {
  max-width: 700px;
  margin: 3rem auto;
  background: #181c27;
  border-radius: 16px;
  box-shadow: 0 2px 16px #0003;
  padding: 2.5rem 2rem;
}
.faq-title {
  font-size: 1.4rem;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-align: center;
}
.faq-question {
  color: #fff;
  font-weight: 700;
  margin: 1.2rem 0 0.5rem 0;
  cursor: pointer;
  font-size: 1.1rem;
}
.faq-answer {
  color: #bfc9d1;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: none;
}
.faq-question.open + .faq-answer {
  display: block;
}

/* Layout and Alignment Improvements */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
section {
  margin-bottom: 2.5rem;
}
.featured-courses, .join-section, .about-content, .contact-content, .faq-section {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.courses-grid {
  justify-items: center;
  align-items: stretch;
}
.course-card {
  margin: 0 auto;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.course-card img {
  align-self: center;
}
.about-content, .contact-content {
  background: #181c27 !important;
  border-radius: 16px !important;
  box-shadow: 0 2px 16px #0003 !important;
  padding: 2.5rem 2rem !important;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.contact-content form {
  max-width: 400px;
  margin: 0 auto;
}
.contact-content form input,
.contact-content form textarea {
  width: 100%;
  box-sizing: border-box;
}
.contact-content .social-icon {
  margin-bottom: 0.5rem;
}
.footer-content {
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
}
.footer-links, .footer-social {
  align-items: flex-start;
}
@media (max-width: 900px) {
  main {
    max-width: 100%;
    padding: 0 0.5rem;
  }
  .featured-courses, .join-section, .about-content, .contact-content, .faq-section {
    max-width: 100%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (max-width: 600px) {
  .about-content, .contact-content {
    padding: 1.2rem 0.5rem !important;
  }
  .footer-content {
    gap: 1.2rem;
  }
}

/* Pricing Section Styles */
.pricing-section {
  margin: 3rem auto 2rem auto;
  text-align: center;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.pricing-card {
  background: #fff;
  color: #181c27;
  border-radius: 18px;
  box-shadow: 0 4px 32px #a084f933, 0 1.5px 0 #a084f9;
  padding: 2.2rem 1.5rem 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 420px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pricing-card.featured {
  background: linear-gradient(135deg, #a084f9 0%, #c7a6ff 100%);
  color: #fff;
  box-shadow: 0 4px 32px #a084f966, 0 1.5px 0 #a084f9;
}
.pricing-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #181c27;
  text-transform: capitalize;
}
.pricing-card.featured .pricing-title {
  color: #fff;
}
.pricing-band {
  width: 100%;
  margin: 0 auto 1.5rem auto;
  padding: 0.7rem 0;
  border-radius: 32px;
  font-size: 2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #a084f9;
  color: #fff;
  box-shadow: 0 0 24px #a084f9cc, 0 0 48px #a084f966;
  position: relative;
  text-shadow: 0 0 8px #fff, 0 0 16px #a084f9;
  letter-spacing: 1px;
}
.glow-purple {
  background: linear-gradient(90deg, #a084f9 60%, #c7a6ff 100%);
  box-shadow: 0 0 32px #a084f9cc, 0 0 64px #c7a6ff99, 0 0 8px #fff;
  color: #fff;
}
.glow-red {
  background: linear-gradient(90deg, #ff3b3b 60%, #ffb6b6 100%);
  box-shadow: 0 0 32px #ff3b3bcc, 0 0 64px #ffb6b699, 0 0 8px #fff2;
  color: #fff;
}
.glow-blue {
  background: linear-gradient(90deg, #3b82ff 60%, #b6d0ff 100%);
  box-shadow: 0 0 32px #3b82ffcc, 0 0 64px #b6d0ff99, 0 0 8px #fff2;
  color: #fff;
}
.glow-gold {
  background: linear-gradient(90deg, #FFC72C 60%, #ffe599 100%);
  box-shadow: 0 0 32px #FFC72Ccc, 0 0 64px #ffe59999, 0 0 8px #fff2;
  color: #181c27;
}
.glow-green {
  background: linear-gradient(90deg, #22c55e 60%, #bbf7d0 100%);
  box-shadow: 0 0 32px #22c55ecc, 0 0 64px #bbf7d099, 0 0 8px #fff2;
  color: #fff;
}
.pricing-currency, .pricing-amount, .pricing-unit {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 2rem;
}
.pricing-unit {
  font-size: 1.1rem;
  font-weight: 700;
  margin-left: 0.5rem;
}
.pricing-desc {
  font-size: 1rem;
  color: #181c27;
  margin: 1.2rem 0 2rem 0;
  font-weight: 500;
  text-align: center;
}
.pricing-card.featured .pricing-desc {
  color: #fff;
}
.pricing-desc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-desc li {
  margin-bottom: 0.5rem;
  color: #181c27;
  font-weight: 500;
}
.pricing-card.featured .pricing-desc li {
  color: #fff;
}
.pricing-btn {
  display: inline-block;
  margin-top: auto;
  padding: 0.8rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #181c27;
  background: #FFC72C;
  border: none;
  border-radius: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px #FFC72C44, 0 0 16px #fff2;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.pricing-btn:hover {
  background: #a084f9;
  color: #fff;
  box-shadow: 0 0 32px #a084f9cc, 0 0 64px #c7a6ff99;
}
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card {
    min-height: 0;
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
  }
}

/* CTA Courses Section Styles */
.cta-courses-section {
  margin: 3rem auto 2rem auto;
  text-align: center;
}
.cta-courses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .cta-courses-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.cta-course-card {
  background: linear-gradient(135deg, #181c27 80%, #232a36 100%);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px #0003, 0 0 0 2px #FFC72C44;
  padding: 2.2rem 1.5rem 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 420px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s, border 0.2s;
  border: 2px solid transparent;
}
.cta-course-card:hover {
  box-shadow: 0 8px 48px #FFC72C55, 0 0 0 4px #FFC72C88;
  border: 2px solid #FFC72C;
  transform: translateY(-6px) scale(1.03);
}
.cta-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #FFC72C33;
}
.cta-price-row {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  color: #FFC72C;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-shadow: 0 2px 8px #FFC72C33;
}
.cta-old-price {
  color: #bfc9d1;
  font-size: 1.3rem;
  text-decoration: line-through;
  opacity: 0.7;
}
.cta-price {
  color: #FFC72C;
  font-size: 2.2rem;
  font-weight: 900;
}
.cta-unit {
  font-size: 1.1rem;
  font-weight: 700;
  margin-left: 0.3rem;
}
.cta-desc {
  font-size: 1.05rem;
  color: #fff;
  margin: 1.2rem 0 2rem 0;
  font-weight: 500;
  text-align: center;
}
.cta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
  width: 100%;
  max-width: 340px;
}
.cta-list li {
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.3rem;
  line-height: 1.4;
  text-shadow: 0 2px 8px #FFC72C33;
}
.cta-list li:before {
  content: '\2714';
  position: absolute;
  left: 0.2rem;
  color: #FFC72C;
  font-size: 1.5rem;
  font-weight: bold;
  filter: drop-shadow(0 0 6px #FFC72C99);
}
.cta-btn-main {
  display: inline-block;
  margin-top: auto;
  padding: 1.1rem 2.7rem;
  font-size: 1.2rem;
  font-weight: 900;
  color: #181c27;
  background: #FFC72C;
  border: none;
  border-radius: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 16px #FFC72C88, 0 0 24px #fff2;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.cta-btn-main:hover {
  background: #ffe599;
  color: #181c27;
  box-shadow: 0 0 32px #FFC72Ccc, 0 0 64px #ffe59999;
  transform: scale(1.05);
}
@media (max-width: 900px) {
  .cta-courses-grid {
    grid-template-columns: 1fr;
  }
}

/* Lock-in Section Styles */
.lockin-section {
  margin: 4rem auto 2.5rem auto;
  text-align: center;
  max-width: 700px;
}
.lockin-headline {
  font-family: 'Inter', sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}
.lockin-sub {
  font-size: 1.3rem;
  color: #bfc9d1;
  margin-bottom: 2.5rem;
  font-weight: 500;
}
.lockin-warning {
  margin: 0 auto 1.5rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lockin-icon {
  font-size: 3.5rem;
  color: #FFC72C;
  filter: drop-shadow(0 0 24px #FFC72Ccc);
  text-shadow: 0 0 24px #FFC72C99, 0 0 48px #fff2;
}
.lockin-price {
  font-family: 'Inter', sans-serif;
}