:root {
  --bg: #0D111A;
  --secondary-bg: #101727;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-hover: rgba(255, 255, 255, 0.1);
  --glow-blue: #1F88F5;
  --glow-aqua: #19E3C2;
  --pink-line: #FE53BB;
  --white: #FFFFFF;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

.navbar {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1400px;
  background: var(--panel);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(31, 136, 245, 0.15);
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo a {
  background: linear-gradient(135deg, var(--glow-blue), var(--glow-aqua));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: var(--transition);
}

.logo a:hover {
  background: linear-gradient(135deg, var(--glow-aqua), var(--glow-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--glow-blue);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--glow-blue);
}

.nav-links a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  width: 25px;
  height: 2px;
  background: var(--glow-blue);
  transition: var(--transition);
  box-shadow: 0 0 8px var(--glow-blue);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg) 0%, var(--secondary-bg) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(90deg, rgba(31, 136, 245, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(31, 136, 245, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}


.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--white), var(--glow-aqua));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(25, 227, 194, 0.3);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.8;
}

.btn-primary {
  display: inline-block;
  padding: 18px 48px;
  background: linear-gradient(135deg, var(--glow-blue), var(--glow-aqua));
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(31, 136, 245, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(31, 136, 245, 0.6);
}

.section {
  padding: 120px 20px;
  position: relative;
}

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

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--white), var(--glow-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.glass-panel {
  background: var(--panel);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--glow-blue), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.glass-panel:hover::before {
  opacity: 1;
}

.glass-panel:hover {
  background: var(--panel-hover);
  border-color: rgba(31, 136, 245, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(31, 136, 245, 0.2);
}

.grid {
  display: grid;
  gap: 30px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

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

.tool-card {
  background: var(--panel);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.tool-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, var(--glow-blue), var(--glow-aqua));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}

.tool-card:hover::after {
  opacity: 1;
}

.tool-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(31, 136, 245, 0.25);
}

.tool-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  color: var(--glow-blue);
}

.tool-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.course-card {
  background: var(--panel);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.course-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--glow-blue), var(--pink-line), var(--glow-aqua));
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}

.course-card:hover::before {
  opacity: 1;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(31, 136, 245, 0.3);
}

.course-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.course-content {
  padding: 30px;
}

.course-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(31, 136, 245, 0.2);
  border: 1px solid var(--glow-blue);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--glow-aqua);
}

.course-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.course-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--glow-blue);
  margin-bottom: 20px;
}

.instructor-card {
  text-align: center;
}

.instructor-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 25px;
  border: 3px solid var(--glow-blue);
  box-shadow: 0 0 30px rgba(31, 136, 245, 0.4);
  object-fit: cover;
}

.skills-list {
  list-style: none;
  margin-top: 20px;
}

.skills-list li {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding-left: 25px;
}

.skills-list li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: var(--glow-aqua);
  font-size: 1.2rem;
}

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

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 136, 245, 0.4), rgba(25, 227, 194, 0.4));
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover {
  transform: translateY(-8px) rotateX(5deg);
  box-shadow: 0 20px 50px rgba(31, 136, 245, 0.3);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

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

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--glow-aqua);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--glow-blue);
  box-shadow: 0 0 20px rgba(31, 136, 245, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

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

.contact-info {
  background: var(--panel);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
}

.contact-info h3 {
  margin-bottom: 30px;
  font-size: 1.8rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.info-icon {
  width: 24px;
  height: 24px;
  color: var(--glow-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer {
  background: var(--secondary-bg);
  padding: 60px 20px 30px;
  border-top: 1px solid rgba(31, 136, 245, 0.2);
  box-shadow: 0 -5px 30px rgba(31, 136, 245, 0.1);
}

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

.footer-section h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: var(--glow-blue);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--glow-aqua);
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.error-page::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(31, 136, 245, 0.1), transparent);
  animation: pulse 3s ease-in-out infinite;
}

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

.error-content {
  position: relative;
  z-index: 2;
}

.error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--glow-blue), var(--pink-line));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-thank-you {
  overflow: visible !important;
  position: relative !important;
  min-height: auto !important;
  margin-top: 100px !important;
}

.hero-thank-you::before {
  display: none !important;
}



.checkmark {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--glow-aqua);
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(25, 227, 194, 0.5);
}

.checkmark svg {
  width: 50px;
  height: 50px;
  color: var(--glow-aqua);
}

.privacy-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: var(--panel);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 25px;
  z-index: 10000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(150%);
  transition: transform 0.4s ease-out;
}

.privacy-popup.show {
  transform: translateY(0);
}

.privacy-popup p {
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.privacy-buttons {
  display: flex;
  gap: 10px;
}

.privacy-buttons button {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.btn-accept {
  background: var(--glow-blue);
  color: var(--white);
}

.btn-accept:hover {
  background: var(--glow-aqua);
}

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

.btn-decline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.fade-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
    width: 95%;
    top: 10px;
  }

  .logo {
    font-size: 1rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 350px;
    background: var(--secondary-bg);
    backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    border-left: 1px solid var(--glow-blue);
    box-shadow: -10px 0 50px rgba(31, 136, 245, 0.3);
    transition: right 0.4s ease-out;
  }

  .nav-links.active {
    right: 0;
  }

  .burger {
    display: flex;
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .section {
    padding: 60px 15px;
  }

  .hero-thank-you {
    margin-top: 90px !important;
    padding-top: 120px !important;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .glass-panel {
    padding: 30px;
  }

  .course-content {
    padding: 25px;
  }

  .tools-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .error-code {
    font-size: 8rem;
  }

  .btn-primary {
    padding: 15px 35px;
    font-size: 0.95rem;
  }

  .contact-info {
    padding: 30px;
  }

  .section > .container > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .section > .container > div[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
  }

  .section > .container > div[style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .section > .container > div[style*="grid-template-columns: repeat(2, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 320px) {
  .navbar {
    padding: 10px 12px !important;
    width: 98% !important;
    top: 5px !important;
  }

  .logo {
    font-size: 0.85rem !important;
  }

  .logo a {
    font-size: 0.85rem !important;
  }

  .nav-links {
    gap: 20px !important;
    font-size: 0.85rem !important;
  }

  .hero {
    min-height: 80vh !important;
    padding-top: 80px !important;
  }

  .hero h1 {
    font-size: 1.6rem !important;
    margin-bottom: 15px !important;
    line-height: 1.2 !important;
  }

  .hero p {
    font-size: 0.9rem !important;
    margin-bottom: 25px !important;
    padding: 0 10px !important;
  }

  .section {
    padding: 35px 8px !important;
  }

  .hero-thank-you {
    margin-top: 70px !important;
    padding-top: 80px !important;
  }

  .section-title {
    font-size: 1.4rem !important;
    margin-bottom: 12px !important;
  }

  .section-subtitle {
    font-size: 0.85rem !important;
    margin-bottom: 30px !important;
    padding: 0 5px !important;
  }

  .glass-panel {
    padding: 18px !important;
  }

  .course-content {
    padding: 12px !important;
  }

  .course-card h3 {
    font-size: 1.2rem !important;
    margin-bottom: 12px !important;
  }

  .course-card p {
    font-size: 0.85rem !important;
  }

  .price {
    font-size: 1.4rem !important;
  }

  .btn-primary {
    padding: 10px 20px !important;
    font-size: 0.85rem !important;
  }

  .tools-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .contact-info {
    padding: 18px !important;
  }

  .contact-info h3 {
    font-size: 1.3rem !important;
  }

  .footer {
    padding: 35px 12px 18px !important;
  }

  .footer-section {
    margin-bottom: 25px !important;
  }

  .footer-section h3 {
    font-size: 1rem !important;
    margin-bottom: 15px !important;
  }

  .footer-section p {
    font-size: 0.85rem !important;
  }

  .footer-links {
    font-size: 0.85rem !important;
  }

  .error-code {
    font-size: 5rem !important;
  }

  .checkmark {
    width: 60px !important;
    height: 60px !important;
    margin-bottom: 15px !important;
  }

  .checkmark svg {
    width: 30px !important;
    height: 30px !important;
  }

  .hero h1[style*="font-size: clamp"] {
    font-size: 1.5rem !important;
  }

  .hero p[style*="font-size: clamp"] {
    font-size: 0.85rem !important;
  }

  div[style*="max-width: 700px"] {
    max-width: 100% !important;
    padding: 0 10px !important;
  }

  div[style*="max-width: 900px"] {
    max-width: 100% !important;
    padding: 0 10px !important;
  }

  div[style*="max-width: 800px"] {
    max-width: 100% !important;
    padding: 0 10px !important;
  }

  div[style*="max-width: 600px"] {
    max-width: 100% !important;
    padding: 0 10px !important;
  }

  .privacy-popup {
    left: 8px !important;
    right: 8px !important;
    padding: 18px !important;
    bottom: 10px !important;
  }

  .privacy-popup p {
    font-size: 0.8rem !important;
  }

  .section > .container > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }

  .section > .container > div[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .section > .container > div[style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .section > .container > div[style*="grid-template-columns: repeat(2, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .container {
    padding: 0 8px !important;
  }

  h2[style*="font-size: 2.5rem"] {
    font-size: 1.5rem !important;
    margin-bottom: 15px !important;
  }

  h3 {
    font-size: 1.1rem !important;
  }

  h4 {
    font-size: 1rem !important;
  }

  p[style*="font-size: 1.1rem"] {
    font-size: 0.85rem !important;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .contact-wrapper {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .form-group {
    margin-bottom: 18px !important;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 15px !important;
    font-size: 0.9rem !important;
  }

  .tool-card {
    padding: 20px !important;
  }

  .tool-card h3 {
    font-size: 1.1rem !important;
  }

  .instructor-card {
    padding: 20px !important;
  }

  .instructor-avatar {
    width: 120px !important;
    height: 120px !important;
  }

  .skills-list {
    font-size: 0.85rem !important;
  }

  .skills-list li {
    padding: 6px 0 !important;
    padding-left: 20px !important;
  }

  .badge {
    font-size: 0.75rem !important;
    padding: 5px 10px !important;
  }

  .course-meta {
    gap: 8px !important;
  }

  .info-item {
    margin-bottom: 18px !important;
    gap: 12px !important;
  }

  .info-icon {
    width: 20px !important;
    height: 20px !important;
  }

  .hero-content {
    padding: 0 10px !important;
  }

  .thank-you-page {
    padding: 20px 10px !important;
  }

  * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  table {
    font-size: 0.8rem !important;
  }

  ul, ol {
    padding-left: 18px !important;
  }

  .privacy-buttons {
    gap: 8px !important;
  }

  .privacy-buttons button {
    padding: 8px !important;
    font-size: 0.85rem !important;
  }

  .hero::before {
    background-size: 30px 30px !important;
  }

  .course-image {
    height: 180px !important;
  }

  .tool-icon {
    width: 45px !important;
    height: 45px !important;
    margin-bottom: 15px !important;
  }

  .gallery-item {
    aspect-ratio: 4/3 !important;
  }

  .instructor-card h3 {
    font-size: 1.1rem !important;
  }

  .course-card h3 {
    font-size: 1.15rem !important;
  }

  .info-item p {
    font-size: 0.85rem !important;
  }

  .footer-bottom {
    padding-top: 20px !important;
    font-size: 0.8rem !important;
  }

  body {
    font-size: 0.9rem !important;
  }

  .success-stories {
    max-width: 100% !important;
    padding: 0 10px !important;
  }

  .success-stories h2 {
    font-size: 1.5rem !important;
    margin-bottom: 15px !important;
  }

  .success-stories p {
    font-size: 0.85rem !important;
    margin-bottom: 30px !important;
    padding: 0 5px !important;
  }

  .success-stats-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    margin-bottom: 25px !important;
  }

  .success-stats-grid .glass-panel {
    padding: 20px !important;
  }

  .stat-number {
    font-size: 2rem !important;
    margin-bottom: 8px !important;
  }

  .stat-label {
    font-size: 0.85rem !important;
  }
}
