@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-orange: #FF7A00;
  --soft-peach: #FFE2CC;
  --deep-orange: #D45A00;
  --warm-cream: #FFF7F2;
  --charcoal: #2E2E2E;
  --white: #FFFFFF;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background-color: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 25px;
  }
}

@media (max-width: 900px) {
  .container {
    padding: 0 20px;
  }
}

header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(255, 122, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 0;
  position: relative;
  z-index: 1;
  min-height: 80px;
  width: 100%;
  gap: 1rem;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--primary-orange);
  text-decoration: none;
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo:hover {
  color: var(--deep-orange);
  transform: scale(1.02);
}

@media (max-width: 1200px) {
  .logo {
    font-size: 1.7rem;
  }
}

@media (max-width: 1024px) {
  .logo {
    font-size: 1.65rem;
  }
}

@media (max-width: 900px) {
  .logo {
    font-size: 1.6rem;
  }
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none !important;
  }

  .nav-links {
    display: flex !important;
    position: static !important;
    width: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  .nav-links li {
    width: auto !important;
  }

  .nav-links a {
    padding: 0.5rem 0 !important;
    border-radius: 0 !important;
  }

  .nav-links a:hover {
    background: transparent !important;
  }

  .nav-links a::after {
    display: block !important;
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }

  .course-grid {
    gap: 2rem;
  }

  .about-content {
    gap: 2.5rem;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 25px;
  }

  .course-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }

  .about-content {
    gap: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .container {
    padding: 0 20px;
  }

  .course-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .course-detail-card {
    gap: 2rem;
  }

  .course-detail-image {
    min-height: 350px;
  }
}

.nav-links a {
  color: var(--charcoal);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-orange);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--charcoal);
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  border-radius: 8px;
  position: relative;
  z-index: 1001;
}

@media (max-width: 1200px) {
  .mobile-menu-toggle {
    font-size: 1.45rem;
  }
}

@media (max-width: 1024px) {
  .mobile-menu-toggle {
    font-size: 1.4rem;
  }
}

@media (max-width: 900px) {
  .mobile-menu-toggle {
    font-size: 1.35rem;
  }
}

.mobile-menu-toggle:hover {
  color: var(--primary-orange);
}

.mobile-menu-toggle:focus {
  outline: 2px solid var(--primary-orange);
  outline-offset: 2px;
}

.hero {
  background: url('../images/bg1.jpg') center/cover no-repeat;
  background-color: var(--warm-cream);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 247, 242, 0.4) 0%, rgba(255, 226, 204, 0.3) 100%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
  line-height: 1.1;
}

.hero h1 span {
  color: var(--primary-orange);
  display: inline-block;
  position: relative;
}

.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(255, 122, 0, 0.2);
  z-index: -1;
  border-radius: 4px;
}

.hero p {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 2.5rem;
  color: var(--charcoal);
  text-shadow: 0 1px 5px rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-weight: 400;
}

.hero-decoration {
  position: absolute;
  font-size: 3rem;
  opacity: 0.15;
  z-index: 0;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
  color: var(--primary-orange);
}

.hero-decoration i {
  display: block;
}

.hero-decoration-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.hero-decoration-2 {
  top: 25%;
  right: 15%;
  animation-delay: 1.5s;
}

.hero-decoration-3 {
  bottom: 20%;
  left: 8%;
  animation-delay: 3s;
}

.hero-decoration-4 {
  bottom: 15%;
  right: 12%;
  animation-delay: 4.5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 20px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--deep-orange) 100%);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.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 ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.5);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-orange);
  border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
  background: var(--soft-peach);
}

.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--charcoal);
  position: relative;
  display: inline-block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.section-title p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-top: 0.5rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-orange), var(--deep-orange));
  border-radius: 2px;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.course-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--warm-cream) 100%);
  border: 3px solid var(--soft-peach);
  border-radius: 25px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 0, 0.05), transparent);
  transition: left 0.6s ease;
}

.course-card:hover::before {
  left: 100%;
}

.course-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--primary-orange);
  border-width: 3px;
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--soft-peach) 100%);
  box-shadow: 0 15px 40px rgba(255, 122, 0, 0.25);
}

.course-icon {
  width: clamp(80px, 10vw, 100px);
  height: clamp(80px, 10vw, 100px);
  margin: 0 auto clamp(1.25rem, 2.5vw, 2rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: clamp(2px, 0.3vw, 3px) solid var(--soft-peach);
}

.course-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.course-icon::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-orange), var(--deep-orange));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  filter: blur(10px);
}

.course-card:hover .course-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(255, 122, 0, 0.4);
  border-color: var(--primary-orange);
}

.course-card:hover .course-icon img {
  transform: scale(1.1);
}

.course-card:hover .course-icon::after {
  opacity: 0.6;
}

.course-card h3 {
  color: var(--deep-orange);
  margin-bottom: 1.25rem;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  transition: color 0.3s ease;
  line-height: 1.3;
}

.course-card:hover h3 {
  color: var(--primary-orange);
}

.course-card p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--charcoal);
  flex-grow: 1;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.course-card .btn {
  margin-top: auto;
  width: 100%;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.25rem, 2.5vw, 2rem);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--soft-peach);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1rem;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--warm-cream);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 122, 0, 0.15);
}

.stat-number {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-orange);
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
  }
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

.testimonial-card {
  background: var(--white);
  border: 2px solid var(--soft-peach);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.15);
  border-color: var(--primary-orange);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--charcoal);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--deep-orange);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.contact-section {
  background: var(--warm-cream);
  padding: 4rem 0;
}

@media (max-width: 1024px) {
  .contact-section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 900px) {
  .contact-section {
    padding: 3rem 0;
  }
}

.contact-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-intro h2 {
  color: var(--charcoal);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.contact-intro p {
  color: var(--charcoal);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .contact-intro {
    margin-bottom: 2.5rem;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 1024px) {
  .contact-grid {
    gap: 2.5rem;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 900px) {
  .contact-grid {
    gap: 2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 600px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .contact-intro {
    margin-bottom: 2rem;
  }

  .contact-intro h2 {
    font-size: 1.75rem;
  }

  .contact-intro p {
    font-size: 1rem;
  }

  .contact-info,
  .contact-form {
    padding: 1.75rem;
    border-radius: 20px;
  }

  .contact-info-header,
  .contact-form-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }

  .contact-info-icon,
  .contact-form-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .contact-info-header h2,
  .contact-form-header h2 {
    font-size: 1.5rem;
  }

  .contact-items-wrapper {
    gap: 1.25rem;
  }

  .contact-item-card {
    padding: 1.25rem;
    gap: 1.25rem;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .contact-item-content h3 {
    font-size: 1rem;
  }

  .contact-item-content p {
    font-size: 0.9rem;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group label {
    font-size: 0.95rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.875rem 1.125rem;
    font-size: 0.95rem;
  }

  .form-group textarea {
    min-height: 130px;
  }

  .map-section {
    margin-top: 2rem;
  }

  .map-header {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .map-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .map-header h2 {
    font-size: 1.5rem;
  }

  .map-container {
    height: 300px;
    border-radius: 18px;
  }
}


.contact-info {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--soft-peach);
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  .contact-info {
    padding: 2.25rem;
    border-radius: 22px;
  }
}

@media (max-width: 900px) {
  .contact-info {
    padding: 2rem;
    border-radius: 20px;
  }
}

.contact-info:hover {
  border-color: var(--primary-orange);
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.15);
  transform: translateY(-3px);
}

.contact-info-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--soft-peach);
}

@media (max-width: 768px) {
  .contact-info-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-orange), var(--deep-orange));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.3);
}

.contact-info-header h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: 1.75rem;
}

.contact-items-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item-card {
  display: flex;
  align-items: start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--warm-cream);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-item-card:hover {
  background: var(--soft-peach);
  border-color: var(--primary-orange);
  transform: translateX(5px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-orange), var(--deep-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

.contact-item-content h3 {
  color: var(--deep-orange);
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}

.contact-item-content p {
  margin: 0;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--soft-peach);
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  .contact-form {
    padding: 2.25rem;
    border-radius: 22px;
  }
}

@media (max-width: 900px) {
  .contact-form {
    padding: 2rem;
    border-radius: 20px;
  }
}

.contact-form:hover {
  border-color: var(--primary-orange);
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.15);
}

.contact-form-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--soft-peach);
}

@media (max-width: 768px) {
  .contact-form-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
}

.contact-form-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-orange), var(--deep-orange));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.3);
}

.contact-form-header h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: 1.75rem;
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--charcoal);
  font-size: 1rem;
}

.form-group label i {
  color: var(--primary-orange);
  font-size: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--soft-peach);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--warm-cream);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(46, 46, 46, 0.5);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
  font-family: inherit;
}

.checkbox-group {
  display: flex;
  align-items: start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.map-section {
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .map-section {
    margin-top: 2rem;
  }
}

.map-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}

@media (max-width: 768px) {
  .map-header {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
}

.map-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-orange), var(--deep-orange));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.3);
}

.map-header h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: 2rem;
}

.map-container {
  width: 100%;
  height: 450px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 3px solid var(--soft-peach);
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  .map-container {
    height: 400px;
    border-radius: 22px;
  }
}

@media (max-width: 768px) {
  .map-container {
    height: 350px;
    border-radius: 20px;
    border-width: 2px;
  }
}

.map-container:hover {
  border-color: var(--primary-orange);
  box-shadow: 0 12px 35px rgba(255, 122, 0, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--white);
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-orange);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.privacy-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.privacy-links a {
  color: var(--white);
  opacity: 0.8;
  font-size: 0.9rem;
}

.privacy-links a:hover {
  opacity: 1;
  color: var(--primary-orange);
}

.privacy-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.privacy-popup.active {
  display: flex;
}

.popup-content {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  margin: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.popup-content h2 {
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.popup-content p {
  margin-bottom: 1rem;
}

.popup-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.page-header {
  background: url('../images/bg2.jpg') center/cover no-repeat;
  background-color: var(--warm-cream);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 247, 242, 0.4) 0%, rgba(255, 226, 204, 0.3) 100%);
  z-index: 0;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: var(--charcoal);
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s ease-out;
}

.page-header p {
  color: var(--charcoal);
  font-size: clamp(1rem, 2vw, 1.2rem);
  text-shadow: 0 1px 5px rgba(255, 255, 255, 0.6);
  animation: fadeInUp 0.8s ease-out;
}

.page-header-no-bg {
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--soft-peach) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header-no-bg h1 {
  color: var(--charcoal);
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s ease-out;
}

.page-header-no-bg p {
  color: var(--charcoal);
  font-size: clamp(1rem, 2vw, 1.2rem);
  animation: fadeInUp 0.8s ease-out;
}

.page-header-bg2 {
  background-image: url('../images/bg2.jpg');
}

.page-header-bg3 {
  background-image: url('../images/bg3.jpg');
}

.page-header-bg4 {
  background-image: url('../images/bg4.jpg');
}

.page-content {
  padding: 4rem 0;
}

@media (max-width: 768px) {
  .page-content {
    padding: 3rem 0;
  }
}

@media (max-width: 400px) {
  .page-content {
    padding: 1.5rem 0;
  }
}

@media (max-width: 320px) {
  .page-content {
    padding: 1.5rem 0;
  }
}

@media (max-width: 280px) {
  .page-content {
    padding: 1.25rem 0;
  }
}

.content-section {
  margin-bottom: 3rem;
}

.content-section h2 {
  color: var(--deep-orange);
  margin-bottom: 1rem;
}

.content-section p {
  margin-bottom: 1rem;
}

.content-section ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.content-section li {
  margin-bottom: 0.5rem;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (max-width: 1024px) {
  .about-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.about-stat-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--warm-cream) 100%);
  border: 3px solid var(--soft-peach);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.1);
}

.about-stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-orange);
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.2);
}

.about-stat-icon {
  width: clamp(55px, 7vw, 70px);
  height: clamp(55px, 7vw, 70px);
  margin: 0 auto clamp(0.75rem, 1.5vw, 1rem);
  background: linear-gradient(135deg, var(--primary-orange), var(--deep-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  box-shadow: 0 6px 15px rgba(255, 122, 0, 0.3);
}

.about-stat-number {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-orange);
  font-family: 'Playfair Display', serif;
  margin-bottom: clamp(0.35rem, 0.8vw, 0.5rem);
  line-height: 1.2;
}

.about-stat-label {
  color: var(--charcoal);
  font-weight: 500;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  line-height: 1.4;
}

.about-section-card {
  background: var(--white);
  border: 2px solid var(--soft-peach);
  border-radius: 25px;
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.about-section-card p {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.about-section-card p {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

@media (max-width: 1024px) {
  .about-section-card {
    padding: 2.5rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .about-section-card {
    padding: 2rem;
    margin-bottom: 1.75rem;
    border-radius: 20px;
  }
}

.about-section-card:hover {
  border-color: var(--primary-orange);
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.15);
  transform: translateY(-3px);
}

.about-section-header {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
  border-bottom: 2px solid var(--soft-peach);
}

@media (max-width: 768px) {
  .about-section-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
}

.about-section-icon {
  width: clamp(45px, 6vw, 60px);
  height: clamp(45px, 6vw, 60px);
  background: linear-gradient(135deg, var(--primary-orange), var(--deep-orange));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

.about-section-header h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  line-height: 1.3;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .approach-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.75rem;
  }
}

@media (max-width: 900px) {
  .approach-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .approach-item {
    padding: 1.35rem;
  }

  .approach-icon {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
  }

  .approach-item h3 {
    font-size: 1.2rem;
  }
}

.approach-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--warm-cream);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.approach-item:hover {
  background: var(--soft-peach);
  transform: translateY(-5px);
}

.approach-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.approach-item:hover .approach-icon {
  transform: scale(1.1);
}

.approach-item h3 {
  color: var(--deep-orange);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  line-height: 1.3;
}

.approach-item p {
  margin: 0;
  color: var(--charcoal);
  line-height: 1.6;
  font-size: 0.95rem;
}

.team-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--soft-peach);
}

@media (max-width: 1024px) {
  .team-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }
}

@media (max-width: 768px) {
  .team-features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
}

.team-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--charcoal);
  font-weight: 500;
}

.team-feature i {
  color: var(--primary-orange);
  font-size: 1.2rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.75rem;
  }
}

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.benefit-item {
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--soft-peach) 100%);
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.benefit-item:hover {
  border-color: var(--primary-orange);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.2);
}

.benefit-item i {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary-orange);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  display: block;
}

.benefit-item h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  line-height: 1.3;
}

.benefit-item p {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

.benefit-item h3 {
  color: var(--deep-orange);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.benefit-item p {
  margin: 0;
  color: var(--charcoal);
}

.course-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: var(--white);
  border: 2px solid var(--soft-peach);
  border-radius: 25px;
  padding: 0;
  margin-bottom: 3rem;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .course-detail-card {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 2rem;
  }

  .course-detail-image {
    height: 300px;
  }
}

.course-detail-card:hover {
  border-color: var(--primary-orange);
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.15);
  transform: translateY(-5px);
}

.course-detail-image {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

@media (max-width: 1024px) {
  .course-detail-image {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .course-detail-image {
    min-height: 300px;
  }
}

.course-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-detail-card:hover .course-detail-image img {
  transform: scale(1.1);
}

.course-detail-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.course-detail-card:hover .course-detail-image::after {
  opacity: 1;
}

.course-detail-content {
  padding: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.course-detail-header {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
  border-bottom: 2px solid var(--soft-peach);
}

.course-detail-icon {
  width: clamp(55px, 7vw, 70px);
  height: clamp(55px, 7vw, 70px);
  background: linear-gradient(135deg, var(--primary-orange), var(--deep-orange));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.3);
}

.course-detail-header h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.3;
}

.course-detail-content p {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
  color: var(--charcoal);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.course-detail-content h3 {
  color: var(--deep-orange);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  line-height: 1.3;
}

.course-features {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.course-feature {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1vw, 1rem);
  padding: clamp(0.5rem, 1vw, 0.75rem);
  background: var(--warm-cream);
  border-radius: 10px;
  color: var(--charcoal);
  transition: all 0.3s ease;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  line-height: 1.5;
}

.course-feature:hover {
  background: var(--soft-peach);
  transform: translateX(5px);
}

.course-feature i {
  color: var(--primary-orange);
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  flex-shrink: 0;
}

.course-structure-card {
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--soft-peach) 100%);
  border: 3px solid var(--primary-orange);
  border-radius: 25px;
  padding: 3rem;
  margin-top: 2rem;
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.15);
}

@media (max-width: 1024px) {
  .course-structure-card {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .course-structure-card {
    padding: 2rem;
    border-radius: 20px;
  }
}

.course-structure-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  justify-content: center;
}

.course-structure-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-orange), var(--deep-orange));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.3);
}

.course-structure-header h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: 2rem;
}

.structure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .structure-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 400px) {
  .structure-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }
}

.structure-item {
  background: var(--white);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.structure-item:hover {
  border-color: var(--primary-orange);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.2);
}

.structure-item i {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--primary-orange);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  display: block;
}

.structure-item h3 {
  color: var(--deep-orange);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.3;
}

.structure-item p {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  line-height: 1.6;
}

.thank-you-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.thank-you-buttons .btn {
  min-width: 200px;
  text-align: center;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  nav {
    padding: 1.25rem 0;
    min-height: 70px;
    flex-wrap: wrap;
  }

  .logo {
    font-size: 1.6rem;
    flex: 1;
    min-width: 0;
    max-width: calc(100% - 60px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.3;
  }

  .mobile-menu-toggle {
    display: flex;
    font-size: 1.5rem;
    min-width: 44px;
    min-height: 44px;
    padding: 0.5rem;
    flex-shrink: 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    gap: 0.5rem;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .nav-links a:hover {
    background: var(--warm-cream);
    color: var(--primary-orange);
  }

  .nav-links a::after {
    display: none;
  }

  .course-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .course-detail-card {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 2rem;
  }

  .course-detail-image {
    height: 300px;
    min-height: 300px;
  }

  .course-detail-content {
    padding: 2rem;
  }

  .course-structure-card {
    padding: 2rem;
    border-radius: 20px;
  }

  .structure-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
  }
}

  .hero {
    padding: 4rem 0;
    min-height: 500px;
  }

  .hero::after {
    width: 400px;
    height: 400px;
  }

  .hero-decoration {
    font-size: 2rem;
    opacity: 0.1;
  }

  .page-header {
    padding: 3rem 0;
    min-height: 250px;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .approach-item {
    padding: 1.25rem;
  }

  .approach-icon {
    width: 55px;
    height: 55px;
    font-size: 1.35rem;
    margin-bottom: 0.875rem;
  }

  .approach-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.65rem;
  }

  .approach-item p {
    font-size: 0.9rem;
  }

  .contact-section {
    padding: 3rem 0;
  }

  .contact-intro {
    margin-bottom: 2.5rem;
  }

  .contact-intro h2 {
    font-size: 2rem;
  }

  .contact-intro p {
    font-size: 1.1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .contact-info,
  .contact-form {
    padding: 2rem;
    border-radius: 22px;
  }

  .contact-info-header,
  .contact-form-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }

  .contact-info-icon,
  .contact-form-icon {
    width: 55px;
    height: 55px;
    font-size: 1.65rem;
  }

  .contact-info-header h2,
  .contact-form-header h2 {
    font-size: 1.65rem;
  }

  .contact-items-wrapper {
    gap: 1.25rem;
  }

  .contact-item-card {
    padding: 1.25rem;
    gap: 1.25rem;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .contact-item-content h3 {
    font-size: 1.05rem;
  }

  .contact-item-content p {
    font-size: 0.9rem;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group label {
    font-size: 0.95rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.875rem 1.125rem;
    font-size: 0.95rem;
  }

  .form-group textarea {
    min-height: 130px;
  }

  .map-section {
    margin-top: 2.5rem;
  }

  .map-header {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.75rem;
  }

  .map-icon {
    width: 55px;
    height: 55px;
    font-size: 1.65rem;
  }

  .map-header h2 {
    font-size: 1.75rem;
  }

  .map-container {
    height: 350px;
    border-radius: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-section h3 {
    font-size: 1.25rem;
  }

  .footer-section p {
    font-size: 0.9rem;
  }

  .copyright {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .privacy-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 400px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .container {
    padding: 0 10px;
  }

  .section {
    padding: 1.5rem 0;
  }

  nav {
    padding: 1rem 0;
    min-height: 60px;
  }

  .logo {
    font-size: 1.4rem;
    max-width: calc(100% - 55px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-menu-toggle {
    font-size: 1.25rem;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
  }

  .nav-links {
    padding: 0.75rem;
    gap: 0.5rem;
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 0.75rem 0;
  }

  .hero {
    padding: 2.5rem 0;
    min-height: 350px;
  }

  .hero::after {
    width: 250px;
    height: 250px;
  }

  .hero-decoration {
    font-size: 1.25rem;
    opacity: 0.08;
  }

  .hero-content {
    padding: 1rem;
  }

  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    width: 100%;
  }

  .page-header {
    padding: 2rem 0;
    min-height: 180px;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }

  .page-header p {
    font-size: 0.95rem;
  }

  .page-header-no-bg {
    padding: 2rem 0;
    min-height: 180px;
  }

  .course-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .course-card {
    padding: 1.25rem;
    border-radius: 15px;
  }

  .course-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .course-card h3 {
    font-size: 1.25rem;
  }

  .course-card p {
    font-size: 0.9rem;
  }

  .section-title {
    margin-bottom: 1.25rem;
  }

  .section-title h2 {
    font-size: 1.3rem;
  }

  .section-title p {
    font-size: 0.85rem;
  }

  .section-title h2::after {
    width: 35px;
    height: 2px;
    bottom: -6px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.25rem;
  }

  .feature-item {
    padding: 1rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .feature-item h3 {
    font-size: 1.1rem;
  }

  .feature-item p {
    font-size: 0.85rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.25rem;
  }

  .testimonial-card {
    padding: 1.25rem;
  }

  .testimonial-text {
    font-size: 0.85rem;
  }

  .testimonial-author {
    font-size: 0.85rem;
  }

  .about-content {
    gap: 1rem;
  }

  .about-text p {
    font-size: 0.85rem;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-stat-card {
    padding: 1.5rem;
  }

  .about-stat-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .about-stat-number {
    font-size: 2rem;
  }

  .about-section-card {
    padding: 1.25rem;
    border-radius: 20px;
  }

  .about-section-header {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }

  .about-section-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .about-section-header h2 {
    font-size: 1.5rem;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
  }

  .approach-item {
    padding: 1.25rem;
    border-radius: 12px;
  }

  .approach-icon {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
    margin-bottom: 0.875rem;
  }

  .approach-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.65rem;
  }

  .approach-item p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .team-features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .team-feature {
    font-size: 0.9rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .benefit-item {
    padding: 1.5rem;
  }

  .benefit-item i {
    font-size: 2rem;
  }

  .benefit-item h3 {
    font-size: 1.25rem;
  }

  .course-detail-card {
    border-radius: 15px;
    margin-bottom: 1.5rem;
  }

  .course-detail-image {
    height: 180px;
    min-height: 180px;
  }

  .course-detail-content {
    padding: 1rem;
  }

  .course-detail-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
  }

  .course-detail-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .course-detail-header h2 {
    font-size: 1.2rem;
  }

  .course-detail-content h3 {
    font-size: 1.1rem;
  }

  .course-detail-content p {
    font-size: 0.85rem;
  }

  .course-feature {
    padding: 0.35rem;
    font-size: 0.75rem;
  }

  .course-structure-card {
    padding: 1rem;
    border-radius: 15px;
    margin-top: 1.5rem;
  }

  .course-structure-header {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .course-structure-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .course-structure-header h2 {
    font-size: 1.2rem;
  }

  .structure-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  .structure-item {
    padding: 1rem;
  }

  .structure-item i {
    font-size: 1.5rem;
  }

  .structure-item h3 {
    font-size: 0.95rem;
  }

  .structure-item p {
    font-size: 0.8rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .stat-item {
    padding: 0.75rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .content-section {
    margin-bottom: 2rem;
  }

  .content-section h2 {
    font-size: 1.5rem;
  }

  .content-section p {
    font-size: 0.9rem;
  }

  .content-section ul {
    margin-left: 1.5rem;
    font-size: 0.9rem;
  }

  .contact-section {
    padding: 2rem 0;
  }

  .contact-intro h2 {
    font-size: 1.75rem;
  }

  .contact-intro p {
    font-size: 1rem;
  }

  .contact-grid {
    gap: 1.5rem;
  }

  .contact-info {
    padding: 1.5rem;
  }

  .contact-info-header {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }

  .contact-info-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .contact-info-header h2 {
    font-size: 1.5rem;
  }

  .contact-item-card {
    padding: 1rem;
    gap: 1rem;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .contact-item-content h3 {
    font-size: 1rem;
  }

  .contact-item-content p {
    font-size: 0.85rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .contact-form-header {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }

  .contact-form-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .contact-form-header h2 {
    font-size: 1.5rem;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .form-group textarea {
    min-height: 120px;
  }

  .map-section {
    margin-top: 2rem;
  }

  .map-header {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .map-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .map-header h2 {
    font-size: 1.5rem;
  }

  .map-container {
    height: 300px;
    border-radius: 20px;
  }

  footer {
    padding: 2rem 0 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .footer-section p {
    font-size: 0.85rem;
  }

  .footer-links {
    gap: 0.4rem;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .copyright {
    flex-direction: column;
    text-align: center;
    padding-top: 1.5rem;
    gap: 0.75rem;
  }

  .copyright p {
    font-size: 0.8rem;
  }

  .privacy-links {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .privacy-links a {
    font-size: 0.8rem;
  }

  .popup-content {
    margin: 10px;
    padding: 1.25rem;
    max-width: calc(100% - 20px);
  }

  .popup-content h2 {
    font-size: 1.5rem;
  }

  .popup-content p {
    font-size: 0.9rem;
  }

  .popup-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .popup-buttons .btn {
    width: 100%;
  }

  .thank-you-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .thank-you-buttons .btn {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .course-grid {
    gap: 1rem;
  }

  .course-card {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 350px) {
  .contact-section {
    padding: 2rem 0;
  }

  .contact-intro h2 {
    font-size: 1.75rem;
  }

  .contact-intro p {
    font-size: 1rem;
  }

  .contact-grid {
    gap: 1.5rem;
  }

  .contact-info {
    padding: 1.5rem;
  }

  .contact-info-header {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }

  .contact-info-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .contact-info-header h2 {
    font-size: 1.5rem;
  }

  .contact-item-card {
    padding: 1rem;
    gap: 1rem;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .contact-item-content h3 {
    font-size: 1rem;
  }

  .contact-item-content p {
    font-size: 0.85rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .contact-form-header {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }

  .contact-form-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .contact-form-header h2 {
    font-size: 1.5rem;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .form-group textarea {
    min-height: 120px;
  }

  .map-section {
    margin-top: 2rem;
  }

  .map-header {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .map-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .map-header h2 {
    font-size: 1.5rem;
  }

  .map-container {
    height: 300px;
    border-radius: 20px;
  }
}

@media (max-width: 320px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .container {
    padding: 0 10px;
  }

  .section {
    padding: 1.5rem 0;
  }

  nav {
    padding: 1rem 0;
    min-height: 60px;
  }

  .logo {
    font-size: 1.4rem;
    max-width: calc(100% - 55px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-menu-toggle {
    font-size: 1.25rem;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
  }

  .nav-links {
    padding: 0.75rem;
    gap: 0.5rem;
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 0.75rem 0;
  }

  .hero {
    padding: 2.5rem 0;
    min-height: 350px;
  }

  .hero::after {
    width: 250px;
    height: 250px;
  }

  .hero-decoration {
    font-size: 1.25rem;
    opacity: 0.08;
  }

  .hero-content {
    padding: 1rem;
  }

  .course-detail-card {
    border-radius: 15px;
    margin-bottom: 1.5rem;
  }

  .course-detail-image {
    height: 180px;
    min-height: 180px;
  }

  .course-detail-content {
    padding: 1rem;
  }

  .course-detail-header {
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
  }

  .course-detail-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .course-detail-header h2 {
    font-size: 1.2rem;
  }

  .course-detail-content h3 {
    font-size: 1.1rem;
  }

  .course-detail-content p {
    font-size: 0.85rem;
  }

  .course-feature {
    padding: 0.35rem;
    font-size: 0.75rem;
  }

  .course-structure-card {
    padding: 1rem;
    border-radius: 15px;
    margin-top: 1.5rem;
  }

  .course-structure-header {
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .course-structure-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .course-structure-header h2 {
    font-size: 1.2rem;
  }

  .structure-item {
    padding: 1rem;
  }

  .structure-item i {
    font-size: 1.5rem;
  }

  .structure-item h3 {
    font-size: 0.95rem;
  }

  .structure-item p {
    font-size: 0.8rem;
  }

  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    width: 100%;
  }

  .page-header {
    padding: 2rem 0;
    min-height: 180px;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }

  .page-header p {
    font-size: 0.95rem;
  }

  .page-header-no-bg {
    padding: 2rem 0;
    min-height: 180px;
  }

  .course-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .course-card {
    padding: 1.25rem;
    border-radius: 15px;
  }

  .course-detail-card {
    border-radius: 18px;
  }

  .course-detail-image {
    height: 200px;
    min-height: 200px;
  }

  .course-detail-content {
    padding: 1rem;
  }

  .course-detail-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
  }

  .course-detail-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .course-detail-header h2 {
    font-size: 1.3rem;
  }

  .course-features {
    gap: 0.4rem;
  }

  .course-feature {
    padding: 0.4rem;
    font-size: 0.8rem;
  }

  .course-structure-card {
    padding: 1.25rem;
    border-radius: 18px;
  }

  .course-structure-header {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }

  .course-structure-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .course-structure-header h2 {
    font-size: 1.3rem;
  }

  .structure-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  .structure-item {
    padding: 1.25rem;
  }

  .structure-item i {
    font-size: 1.75rem;
  }

  .structure-item h3 {
    font-size: 1rem;
  }

  .course-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .course-card h3 {
    font-size: 1.25rem;
  }

  .course-card p {
    font-size: 0.9rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-item {
    padding: 1rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-stat-card {
    padding: 1.5rem;
  }

  .about-stat-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .about-stat-number {
    font-size: 2rem;
  }

  .about-section-card {
    padding: 1.25rem;
    border-radius: 20px;
  }

  .about-section-header {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }

  .about-section-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .about-section-header h2 {
    font-size: 1.5rem;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
  }

  .approach-item {
    padding: 1.25rem;
    border-radius: 12px;
  }

  .approach-icon {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
    margin-bottom: 0.875rem;
  }

  .approach-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.65rem;
  }

  .approach-item p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .team-features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .team-feature {
    font-size: 0.9rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .benefit-item {
    padding: 1.5rem;
  }

  .benefit-item i {
    font-size: 2rem;
  }

  .benefit-item h3 {
    font-size: 1.25rem;
  }

  .course-detail-card {
    border-radius: 20px;
  }

  .course-detail-image {
    height: 250px;
    min-height: 250px;
  }

  .course-detail-content {
    padding: 1.25rem;
  }

  .course-detail-header {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
  }

  .course-detail-icon {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }

  .course-detail-header h2 {
    font-size: 1.5rem;
  }

  .course-features {
    gap: 0.5rem;
  }

  .course-feature {
    padding: 0.5rem;
    font-size: 0.85rem;
  }

  .course-structure-card {
    padding: 1.5rem;
  }

  .course-structure-header {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .course-structure-icon {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }

  .course-structure-header h2 {
    font-size: 1.5rem;
  }

  .structure-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .structure-item {
    padding: 1.5rem;
  }

  .structure-item i {
    font-size: 2rem;
  }

  .structure-item h3 {
    font-size: 1.1rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .testimonial-card {
    padding: 1.25rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .contact-section {
    padding: 2rem 0;
  }

  .contact-intro h2 {
    font-size: 1.75rem;
  }

  .contact-intro p {
    font-size: 1rem;
  }

  .contact-grid {
    gap: 1.5rem;
  }

  .contact-info {
    padding: 1.5rem;
  }

  .contact-info-header {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }

  .contact-info-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .contact-info-header h2 {
    font-size: 1.5rem;
  }

  .contact-item-card {
    padding: 1rem;
    gap: 1rem;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .contact-item-content h3 {
    font-size: 1rem;
  }

  .contact-item-content p {
    font-size: 0.85rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .contact-form-header {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }

  .contact-form-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .contact-form-header h2 {
    font-size: 1.5rem;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .form-group textarea {
    min-height: 120px;
  }

  .map-section {
    margin-top: 2rem;
  }

  .map-header {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .map-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .map-header h2 {
    font-size: 1.5rem;
  }

  .map-container {
    height: 300px;
    border-radius: 20px;
  }

  footer {
    padding: 2rem 0 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .footer-section p {
    font-size: 0.85rem;
  }

  .footer-links {
    gap: 0.4rem;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .copyright {
    flex-direction: column;
    text-align: center;
    padding-top: 1.5rem;
    gap: 0.75rem;
  }

  .copyright p {
    font-size: 0.8rem;
  }

  .privacy-links {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .privacy-links a {
    font-size: 0.8rem;
  }

  .popup-content {
    margin: 10px;
    padding: 1.25rem;
    max-width: calc(100% - 20px);
  }

  .popup-content h2 {
    font-size: 1.5rem;
  }

  .popup-content p {
    font-size: 0.9rem;
  }

  .popup-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .popup-buttons .btn {
    width: 100%;
  }

  .thank-you-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .thank-you-buttons .btn {
    width: 100%;
    min-width: auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-item {
    padding: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .content-section {
    margin-bottom: 2rem;
  }

  .content-section h2 {
    font-size: 1.5rem;
  }

  .content-section p {
    font-size: 0.9rem;
  }

  .content-section ul {
    margin-left: 1.5rem;
    font-size: 0.9rem;
  }

  .section-title {
    margin-bottom: 1.25rem;
  }

  .section-title h2 {
    font-size: 1.3rem;
  }

  .section-title p {
    font-size: 0.85rem;
  }

  .section-title h2::after {
    width: 35px;
    height: 2px;
    bottom: -6px;
  }

  .features-grid {
    gap: 1rem;
    margin-top: 1.25rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .feature-item h3 {
    font-size: 1.1rem;
  }

  .feature-item p {
    font-size: 0.85rem;
  }

  .testimonials-grid {
    gap: 1rem;
    margin-top: 1.25rem;
  }

  .testimonial-card {
    padding: 1.25rem;
  }

  .testimonial-text {
    font-size: 0.85rem;
  }

  .testimonial-author {
    font-size: 0.85rem;
  }

  .about-content {
    gap: 1rem;
  }

  .about-text p {
    font-size: 0.85rem;
  }

  .stats-grid {
    gap: 0.75rem;
  }

  .stat-item {
    padding: 0.75rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 280px) {
  body {
    font-size: 13px;
  }

  .container {
    padding: 0 8px;
  }

  nav {
    padding: 0.75rem 0;
    min-height: 55px;
    flex-wrap: wrap;
  }

  .logo {
    font-size: 1.2rem;
    max-width: calc(100% - 50px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.2;
  }

  .mobile-menu-toggle {
    font-size: 1.15rem;
    padding: 0.4rem;
    min-width: 40px;
    min-height: 40px;
    flex-shrink: 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    gap: 0.25rem;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
    display: block;
    width: 100%;
    border-radius: 5px;
  }

  .nav-links a:hover {
    background: var(--warm-cream);
    color: var(--primary-orange);
  }

  .nav-links a::after {
    display: none;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .hero {
    padding: 2rem 0;
    min-height: 300px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.85rem;
  }

  .hero::after {
    width: 200px;
    height: 200px;
  }

  .hero-decoration {
    font-size: 1rem;
  }

  .btn {
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    border-radius: 15px;
  }

  .page-header,
  .page-header-no-bg {
    padding: 1.5rem 0;
    min-height: 150px;
  }

  .page-header h1,
  .page-header-no-bg h1 {
    font-size: 1.5rem;
  }

  .page-header p,
  .page-header-no-bg p {
    font-size: 0.85rem;
  }

  .section {
    padding: 1.25rem 0;
  }

  .course-card {
    padding: 1rem;
    border-radius: 15px;
  }

  .course-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .course-detail-card {
    border-radius: 15px;
    margin-bottom: 1.5rem;
  }

  .course-detail-image {
    height: 180px;
    min-height: 180px;
  }

  .course-detail-content {
    padding: 1rem;
  }

  .course-detail-header {
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
  }

  .course-detail-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .course-detail-header h2 {
    font-size: 1.2rem;
  }

  .course-detail-content h3 {
    font-size: 1.1rem;
  }

  .course-detail-content p {
    font-size: 0.85rem;
  }

  .course-feature {
    padding: 0.35rem;
    font-size: 0.75rem;
  }

  .course-structure-card {
    padding: 1rem;
    border-radius: 15px;
    margin-top: 1.5rem;
  }

  .course-structure-header {
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .course-structure-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .course-structure-header h2 {
    font-size: 1.2rem;
  }

  .structure-item {
    padding: 1rem;
  }

  .structure-item i {
    font-size: 1.5rem;
  }

  .structure-item h3 {
    font-size: 0.95rem;
  }

  .structure-item p {
    font-size: 0.8rem;
  }

  .course-card h3 {
    font-size: 1.1rem;
  }

  .course-card p {
    font-size: 0.85rem;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .feature-item {
    padding: 0.75rem;
  }

  .about-stat-card {
    padding: 1.25rem;
  }

  .about-stat-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .about-stat-number {
    font-size: 1.75rem;
  }

  .about-stat-label {
    font-size: 0.85rem;
  }

  .about-section-card {
    padding: 1rem;
    border-radius: 15px;
  }

  .about-section-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .about-section-header h2 {
    font-size: 1.3rem;
  }

  .approach-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .approach-grid {
    gap: 0.875rem;
    margin-top: 1rem;
  }

  .approach-item {
    padding: 0.875rem;
    border-radius: 8px;
  }

  .approach-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    margin-bottom: 0.65rem;
  }

  .approach-item h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }

  .approach-item p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .approach-grid {
    gap: 0.875rem;
    margin-top: 1rem;
  }

  .approach-item {
    padding: 0.875rem;
    border-radius: 8px;
  }

  .approach-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    margin-bottom: 0.65rem;
  }

  .approach-item h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }

  .approach-item p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .team-feature {
    font-size: 0.85rem;
    gap: 0.75rem;
  }

  .benefit-item {
    padding: 1.25rem;
  }

  .benefit-item i {
    font-size: 1.75rem;
  }

  .benefit-item h3 {
    font-size: 1.1rem;
  }

  .course-detail-image {
    height: 200px;
    min-height: 200px;
  }

  .course-detail-content {
    padding: 1rem;
  }

  .course-detail-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .course-detail-header h2 {
    font-size: 1.3rem;
  }

  .course-feature {
    padding: 0.4rem;
    font-size: 0.8rem;
  }

  .course-structure-card {
    padding: 1.25rem;
  }

  .course-structure-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .course-structure-header h2 {
    font-size: 1.3rem;
  }

  .structure-item {
    padding: 1.25rem;
  }

  .structure-item i {
    font-size: 1.75rem;
  }

  .structure-item h3 {
    font-size: 1rem;
  }

  .testimonial-card {
    padding: 1rem;
  }

  .testimonial-text {
    font-size: 0.85rem;
  }

  .contact-section {
    padding: 1.5rem 0;
  }

  .contact-intro {
    margin-bottom: 1.75rem;
  }

  .contact-intro h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .contact-intro p {
    font-size: 0.9rem;
  }

  .contact-grid {
    gap: 1.25rem;
    margin-bottom: 1.75rem;
  }

  .contact-info {
    padding: 1.25rem;
    border-radius: 18px;
  }

  .contact-info-header {
    gap: 0.875rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.875rem;
  }

  .contact-info-icon {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }

  .contact-info-header h2 {
    font-size: 1.3rem;
  }

  .contact-items-wrapper {
    gap: 1rem;
  }

  .contact-item-card {
    padding: 0.875rem;
    gap: 0.875rem;
    border-radius: 10px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .contact-item-content h3 {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
  }

  .contact-item-content p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .contact-form {
    padding: 1.25rem;
    border-radius: 18px;
  }

  .contact-form-header {
    gap: 0.875rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.875rem;
  }

  .contact-form-icon {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }

  .contact-form-header h2 {
    font-size: 1.3rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-group label {
    font-size: 0.85rem;
    gap: 0.35rem;
    margin-bottom: 0.65rem;
  }

  .form-group label i {
    font-size: 0.85rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.65rem 0.85rem;
    font-size: 0.85rem;
    border-radius: 8px;
  }

  .form-group textarea {
    min-height: 100px;
  }

  .checkbox-group {
    margin-bottom: 1rem;
    gap: 0.35rem;
  }

  .checkbox-group label {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .map-section {
    margin-top: 1.75rem;
  }

  .map-header {
    gap: 0.875rem;
    margin-bottom: 1.25rem;
  }

  .map-icon {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }

  .map-header h2 {
    font-size: 1.3rem;
  }

  .map-container {
    height: 250px;
    border-radius: 15px;
    border-width: 2px;
  }

  footer {
    padding: 1.5rem 0 0.75rem;
  }

  .footer-content {
    gap: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .footer-section p {
    font-size: 0.8rem;
  }

  .footer-links {
    gap: 0.3rem;
  }

  .footer-links a {
    font-size: 0.8rem;
  }

  .copyright {
    padding-top: 1.25rem;
    gap: 0.5rem;
  }

  .copyright p {
    font-size: 0.75rem;
  }

  .privacy-links {
    gap: 0.4rem;
  }

  .privacy-links a {
    font-size: 0.75rem;
  }

  .popup-content {
    margin: 8px;
    padding: 1rem;
    max-width: calc(100% - 16px);
  }

  .popup-content h2 {
    font-size: 1.3rem;
  }

  .popup-content p {
    font-size: 0.85rem;
  }

  .popup-buttons {
    gap: 0.5rem;
  }

  .thank-you-buttons {
    gap: 0.5rem;
  }

  .stats-grid {
    gap: 0.75rem;
  }

  .stat-item {
    padding: 0.75rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .content-section {
    margin-bottom: 1.5rem;
  }

  .content-section h2 {
    font-size: 1.3rem;
  }

  .content-section p {
    font-size: 0.85rem;
  }

  .content-section ul {
    margin-left: 1.25rem;
    font-size: 0.85rem;
  }
}
