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

:root {
  --primary: #6366f1;
  --secondary: #8b5cf6;
  --accent: #ec4899;
  --dark: #0f172a;
  --light: #f8fafc;
  --gray: #64748b;
  --success: #10b981;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

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

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

header {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-nav {
  display: flex;
  gap: 32px;
}

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

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--secondary) 50%,
    var(--accent) 100%
  );
  opacity: 0.1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.3;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 60px 0;
}

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

.hero-modern h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-modern p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.6);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

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

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

.stat-item strong {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

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

.trust-section {
  background: var(--light);
  padding: 20px 0;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

.trust-text {
  font-size: 14px;
  color: var(--gray);
  font-weight: 500;
}

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

.btn:hover {
  background: var(--secondary);
  transform: translateY(-1px);
}

section {
  padding: 80px 0;
}

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

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

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature-item {
  background: var(--light);
  padding: 32px;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

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

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

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

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.program-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.program-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.program-content {
  padding: 32px;
}

.program-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.program-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--dark);
  font-weight: 700;
}

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

.program-highlights {
  list-style: none;
  margin-bottom: 24px;
}

.program-highlights li {
  font-size: 13px;
  color: var(--gray);
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

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

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

.path-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.path-step {
  text-align: center;
  padding: 32px 24px;
  background: var(--light);
  border-radius: 12px;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.path-step h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--dark);
  font-weight: 600;
}

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

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.pricing-card.featured {
  border: 3px solid var(--primary);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: var(--white);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--dark);
  font-weight: 700;
}

.price-tag {
  margin-bottom: 32px;
}

.currency {
  font-size: 20px;
  color: var(--gray);
  font-weight: 600;
}

.amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
}

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

.pricing-card li {
  padding: 12px 0;
  font-size: 14px;
  color: var(--gray);
  border-bottom: 1px solid var(--light);
  line-height: 1.5;
}

.pricing-card li:last-child {
  border-bottom: none;
}

.technologies {
  background: var(--white);
}

.tech-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.tech-category h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--dark);
  font-weight: 600;
  text-align: left;
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-list span {
  background: var(--light);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  border: 1px solid rgba(99, 102, 241, 0.2);
  transition: all 0.3s;
}

.tech-list span:hover {
  background: var(--primary);
  color: var(--white);
}

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

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 60px;
  color: var(--primary);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial p {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.7;
  font-style: italic;
  position: relative;
  z-index: 1;
}

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

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

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

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

.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.method-item {
  padding: 28px;
  background: var(--light);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.method-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--dark);
  font-weight: 600;
}

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

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

.location-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

#map {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  background: var(--gray);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-block h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--dark);
  font-weight: 600;
}

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

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

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  padding: 28px;
  background: var(--light);
  border-radius: 12px;
}

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

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

.final-cta {
  background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.15;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-btn-large {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 18px 48px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.cta-btn-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.6);
}

.cta-note {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

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

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

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--primary);
}

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

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 24px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  display: none;
}

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

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

.privacy-content h3 {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}

.privacy-content p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.5;
}

.privacy-content button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.3s;
}

.privacy-content button:hover {
  background: var(--secondary);
}

.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.15;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.page-hero p {
  font-size: 18px;
  opacity: 0.9;
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.program-overview,
.curriculum,
.skills,
.career {
  padding: 80px 0;
}

.program-overview {
  background: var(--light);
}

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

.overview-item {
  background: var(--white);
  padding: 28px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.overview-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--primary);
  font-weight: 600;
}

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

.program-overview > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 32px;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.7;
}

.curriculum-list {
  max-width: 900px;
  margin: 0 auto;
}

.curriculum-item {
  background: var(--light);
  padding: 28px;
  margin-bottom: 20px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.curriculum-item h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--dark);
  font-weight: 600;
}

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

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

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.skill-item {
  background: var(--white);
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.skill-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.career p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.7;
}

.career-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
}

.stat {
  text-align: center;
  padding: 32px;
  background: var(--light);
  border-radius: 12px;
}

.stat h3 {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 700;
}

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

.contact-section {
  background: var(--light);
  padding: 80px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info-box,
.contact-form-box {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-box h2,
.contact-form-box h2 {
  font-size: 28px;
  margin-bottom: 28px;
  text-align: left;
  font-weight: 700;
}

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

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

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

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  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);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

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

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

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

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.map-section {
  padding: 80px 0;
}

.thankyou-page,
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.thankyou-page::before,
.error-page::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.15;
}

.thankyou-content,
.error-content {
  background: var(--white);
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 600px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--success);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 24px;
  font-weight: 700;
}

.thankyou-content h1 {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--dark);
  font-weight: 700;
}

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

.thankyou-actions,
.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
  flex-wrap: wrap;
}

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

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

.error-content h1 {
  font-size: 96px;
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: 800;
  line-height: 1;
}

.error-content h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--dark);
  font-weight: 700;
}

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

.error-links {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--light);
}

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

.error-links a {
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
  margin: 0 12px;
}

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

.policy-page {
  padding: 80px 0;
  background: var(--light);
}

.policy-page .container {
  max-width: 900px;
}

.policy-page h1 {
  font-size: 40px;
  margin-bottom: 16px;
  color: var(--dark);
  font-weight: 700;
  text-align: center;
}

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

.policy-content {
  background: var(--white);
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.policy-content h2 {
  font-size: 26px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--dark);
  font-weight: 700;
  text-align: left;
}

.policy-content h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--primary);
  font-weight: 600;
}

.policy-content h4 {
  font-size: 17px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--dark);
  font-weight: 600;
}

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

.policy-content ul,
.policy-content ol {
  margin-left: 28px;
  margin-bottom: 16px;
}

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

.policy-content strong {
  color: var(--dark);
  font-weight: 600;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }

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

  .menu-toggle {
    display: block;
  }

  .hero-modern {
    min-height: 70vh;
  }

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

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

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

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

  .hero-stats {
    gap: 32px;
  }

  section {
    padding: 60px 0;
  }

  section h2 {
    font-size: 28px;
  }

  .location-content {
    grid-template-columns: 1fr;
  }

  #map {
    height: 300px;
  }

  .privacy-content {
    flex-direction: column;
    text-align: center;
  }

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

  .cta-content p {
    font-size: 16px;
  }

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

  .policy-content {
    padding: 32px;
  }
}

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

  .container {
    padding: 0 16px;
  }

  .hero-modern {
    min-height: 60vh;
  }

  .hero-content {
    padding: 40px 0;
  }

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

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

  .stat-item strong {
    font-size: 24px;
  }

  section {
    padding: 50px 0;
  }

  section h2 {
    font-size: 24px;
  }

  .section-intro {
    font-size: 15px;
  }

  .feature-grid,
  .program-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta-btn,
  .btn-outline {
    padding: 12px 24px;
    font-size: 14px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .amount {
    font-size: 40px;
  }

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

  .cta-btn-large {
    padding: 14px 32px;
    font-size: 15px;
  }

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

  .success-icon {
    width: 70px;
    height: 70px;
    font-size: 36px;
  }

  .thankyou-content h1 {
    font-size: 26px;
  }

  .error-content h1 {
    font-size: 72px;
  }

  .error-content h2 {
    font-size: 22px;
  }

  .policy-page h1 {
    font-size: 28px;
  }

  .policy-content {
    padding: 24px;
  }

  .policy-content h2 {
    font-size: 22px;
  }

  .policy-content h3 {
    font-size: 18px;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 14px;
  }

  .logo {
    font-size: 17px;
  }

  .hero-modern h1 {
    font-size: 23px;
  }

  section h2 {
    font-size: 22px;
  }

  .feature-item,
  .program-card,
  .pricing-card {
    padding: 24px;
  }

  .contact-info-box,
  .contact-form-box {
    padding: 28px;
  }

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

  .policy-content {
    padding: 20px;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 12px;
  }

  .hero-modern h1 {
    font-size: 21px;
  }

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

  section h2 {
    font-size: 20px;
  }

  .cta-btn,
  .btn-outline {
    padding: 10px 20px;
    font-size: 13px;
  }

  .feature-item,
  .pricing-card {
    padding: 20px;
  }

  .amount {
    font-size: 36px;
  }
}
