* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #6366f1;
  --secondary: #8b5cf6;
  --accent: #ec4899;
  --dark: #0f172a;
  --light: #f8fafc;
  --gray: #64748b;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: rgba(0, 0, 0, 0.1);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.5;
  color: var(--dark);
  background: var(--white);
  font-size: 15px;
}

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

header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  position: relative;
  z-index: 999;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.main-nav {
  position: relative;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  margin: 4px 0;
  transition: 0.3s;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-menu a {
  color: var(--dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--primary);
}

.mega-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -200px;
  right: -100px;
  animation: float 20s infinite ease-in-out;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  bottom: -150px;
  left: -100px;
  animation: float 15s infinite ease-in-out reverse;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 10s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.2);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 25px;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.mega-hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mega-hero p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 35px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  display: inline-block;
}

.hero-btn.primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.hero-btn.primary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.hero-btn.secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 50px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 32px;
  margin-bottom: 12px;
  font-weight: 700;
}

.page-hero p {
  font-size: 16px;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

.cta-button {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 14px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.cta-button:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--secondary);
}

.btn-secondary {
  background: var(--gray);
}

.btn-secondary:hover {
  background: var(--dark);
}

section {
  padding: 50px 0;
}

h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--dark);
  font-weight: 700;
  text-align: center;
}

h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--dark);
  font-weight: 600;
}

.intro-section {
  padding: 60px 0;
  background: var(--white);
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-content h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: var(--dark);
}

.intro-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 20px;
  text-align: left;
}

.section-intro {
  text-align: center;
  color: var(--gray);
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 35px;
}

.features {
  background: var(--light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 35px;
}

.feature-card {
  background: var(--white);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.feature-card h3 {
  color: var(--dark);
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 35px;
}

.course-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px var(--shadow);
  transition: transform 0.3s;
}

.course-card:hover {
  transform: translateY(-5px);
}

.course-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.course-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.course-card:hover .course-image img {
  transform: scale(1.05);
}

.course-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: var(--white);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.course-content {
  padding: 25px;
}

.course-highlights {
  list-style: none;
  margin: 15px 0 20px;
  padding: 0;
}

.course-highlights li {
  padding: 8px 0;
  color: var(--gray);
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.course-highlights li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.methodology {
  background: var(--light);
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 35px;
}

.method-step {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  line-height: 50px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.method-step h3 {
  margin-bottom: 10px;
}

.method-step p {
  color: var(--gray);
  font-size: 14px;
}

.tools-section {
  background: var(--white);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 35px;
}

.tool-item {
  background: var(--light);
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid var(--border);
  transition: all 0.3s;
}

.tool-item:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.tool-item h4 {
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 18px;
}

.tool-item p {
  color: var(--gray);
  font-size: 13px;
  line-height: 1.5;
}

.testimonials {
  background: var(--light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 35px;
}

.testimonial {
  background: var(--white);
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.testimonial p {
  color: var(--dark);
  font-size: 15px;
  font-style: italic;
  margin-bottom: 12px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testimonial-author strong {
  color: var(--dark);
  font-size: 14px;
}

.testimonial-author span {
  color: var(--gray);
  font-size: 12px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 35px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat p {
  color: var(--gray);
  font-size: 15px;
}

.career-section {
  background: var(--light);
}

.career-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  margin-top: 35px;
  align-items: start;
}

.career-text h3 {
  color: var(--dark);
  margin-bottom: 20px;
  font-size: 24px;
}

.career-text p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.career-stats {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.career-stat {
  background: var(--white);
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid var(--primary);
}

.career-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.career-stat p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.workshop-section {
  background: var(--white);
  padding: 70px 0;
}

.workshop-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.workshop-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px var(--shadow);
}

.workshop-text h2 {
  text-align: left;
  margin-bottom: 20px;
  font-size: 28px;
}

.workshop-text p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.workshop-benefits {
  list-style: none;
  margin: 20px 0 25px;
  padding: 0;
}

.workshop-benefits li {
  padding: 10px 0;
  color: var(--dark);
  font-size: 15px;
  position: relative;
  padding-left: 25px;
}

.workshop-benefits li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
}

.faq-section {
  background: var(--light);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-top: 35px;
}

.faq-item {
  background: var(--white);
  padding: 25px;
  border-radius: 8px;
}

.faq-item h3 {
  color: var(--dark);
  font-size: 17px;
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.final-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 70px 0;
  text-align: center;
}

.cta-content h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.cta-note {
  font-size: 14px;
  margin-top: 15px;
  opacity: 0.8;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 35px;
}

.detail-card {
  background: var(--light);
  padding: 25px;
  border-radius: 8px;
}

.detail-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.detail-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

.pricing {
  background: var(--light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 35px;
}

.price-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid var(--border);
  transition: transform 0.3s;
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-card.featured {
  border-color: var(--primary);
  box-shadow: 0 4px 15px var(--shadow);
}

.price-card h3 {
  color: var(--dark);
  margin-bottom: 15px;
}

.price {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.price-card ul {
  list-style: none;
  margin-bottom: 25px;
  text-align: left;
}

.price-card li {
  padding: 8px 0;
  color: var(--gray);
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.learning-outcomes {
  background: var(--white);
}

.outcomes-list {
  max-width: 800px;
  margin: 25px auto 0;
  list-style: none;
}

.outcomes-list li {
  padding: 12px 0 12px 30px;
  position: relative;
  color: var(--dark);
  font-size: 15px;
}

.outcomes-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
}

.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 35px;
}

.contact-info h2 {
  text-align: left;
  margin-bottom: 25px;
}

.info-item {
  margin-bottom: 25px;
}

.info-item h3 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 8px;
}

.info-item p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

.contact-form-wrapper h2 {
  text-align: left;
  margin-bottom: 25px;
}

.contact-form {
  background: var(--light);
  padding: 30px;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--dark);
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
}

.checkbox-group input[type='checkbox'] {
  width: auto;
  margin-top: 4px;
}

.checkbox-group span {
  font-size: 13px;
  color: var(--gray);
}

.checkbox-group a {
  color: var(--primary);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: var(--secondary);
}

.map-section {
  background: var(--light);
}

.map-wrapper {
  margin-top: 25px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px var(--shadow);
}

.phone-cta {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 15px;
}

.thankyou-wrapper,
.error-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 20px;
}

.thankyou-content,
.error-content {
  background: var(--white);
  padding: 50px 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 600px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 25px;
}

.thankyou-content h1,
.error-content h2 {
  color: var(--dark);
  margin-bottom: 15px;
  font-size: 28px;
}

.thankyou-content p,
.error-content p {
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.6;
}

.thankyou-actions,
.error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.thankyou-info {
  padding-top: 25px;
  border-top: 1px solid var(--border);
}

.thankyou-info p {
  margin-bottom: 8px;
  font-size: 14px;
}

.thankyou-info .phone {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0;
}

.error-code {
  font-size: 80px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.error-links {
  text-align: left;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.error-links p {
  font-weight: 600;
  margin-bottom: 10px;
}

.error-links ul {
  list-style: none;
}

.error-links li {
  margin-bottom: 8px;
}

.error-links a {
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
}

.error-links a:hover {
  text-decoration: underline;
}

.policy-section {
  background: var(--white);
  padding: 50px 0;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.update-date {
  color: var(--gray);
  font-size: 13px;
  margin-bottom: 30px;
  text-align: center;
}

.current-date {
  font-weight: 600;
}

.policy-content h1 {
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 15px;
  text-align: center;
}

.policy-content h2 {
  font-size: 22px;
  color: var(--dark);
  margin-top: 35px;
  margin-bottom: 15px;
  text-align: left;
}

.policy-content h3 {
  font-size: 18px;
  color: var(--primary);
  margin-top: 25px;
  margin-bottom: 12px;
}

.policy-content p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.policy-content ul,
.policy-content ol {
  margin-bottom: 15px;
  padding-left: 25px;
}

.policy-content li {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 8px;
}

footer {
  background: var(--dark);
  color: var(--white);
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--white);
}

.footer-section p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 8px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--white);
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px;
  z-index: 1000;
  display: none;
  box-shadow: 0 -2px 10px var(--shadow);
}

.privacy-popup.show {
  display: block;
}

.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.privacy-content p {
  font-size: 13px;
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.privacy-content a {
  color: var(--white);
  text-decoration: underline;
}

#accept-privacy {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s;
}

#accept-privacy:hover {
  background: var(--secondary);
}

@media (max-width: 900px) {
  .career-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .workshop-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .workshop-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 20px;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px var(--shadow);
    display: none;
    min-width: 200px;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .mega-hero {
    min-height: auto;
    padding: 60px 0;
  }

  .mega-hero h1 {
    font-size: 32px;
  }

  .mega-hero p {
    font-size: 16px;
  }

  .hero-stats {
    gap: 25px;
  }

  .stat-value {
    font-size: 26px;
  }

  .shape-1 {
    width: 400px;
    height: 400px;
  }

  .shape-2 {
    width: 300px;
    height: 300px;
  }

  .shape-3 {
    width: 200px;
    height: 200px;
  }

  .page-hero h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  .features-grid,
  .courses-grid,
  .methodology-grid,
  .testimonials-grid,
  .stats-grid,
  .details-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .thankyou-content,
  .error-content {
    padding: 40px 25px;
  }

  .error-code {
    font-size: 60px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .container {
    padding: 0 15px;
  }

  .mega-hero {
    padding: 50px 0;
  }

  .mega-hero h1 {
    font-size: 26px;
  }

  .mega-hero p {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-stats {
    gap: 20px;
    justify-content: space-between;
  }

  .stat-value {
    font-size: 24px;
  }

  .stat-label {
    font-size: 12px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 35px 0;
  }

  h2 {
    font-size: 22px;
  }

  .cta-button,
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .contact-form {
    padding: 20px;
  }

  .thankyou-content,
  .error-content {
    padding: 30px 20px;
  }

  .thankyou-icon {
    width: 60px;
    height: 60px;
    font-size: 36px;
  }
}

@media (max-width: 320px) {
  body {
    font-size: 13px;
  }

  .mega-hero h1 {
    font-size: 24px;
  }

  .mega-hero p {
    font-size: 14px;
  }

  h2 {
    font-size: 20px;
  }

  .feature-card,
  .detail-card,
  .price-card,
  .method-step,
  .faq-item {
    padding: 20px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 15px;
  }

  .stat-value {
    font-size: 22px;
  }

  .career-number {
    font-size: 30px;
  }

  .cta-content h2 {
    font-size: 28px;
  }
}
