/* CSS Variables - Neutral Color Scheme */
:root {
  /* Primary Colors */
  --primary-color: #4A90E2;
  --primary-dark: #357ABD;
  --primary-light: #6BA3E8;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --gray-100: #E9ECEF;
  --gray-200: #DEE2E6;
  --gray-300: #CED4DA;
  --gray-400: #ADB5BD;
  --gray-500: #6C757D;
  --gray-600: #495057;
  --gray-700: #343A40;
  --gray-800: #212529;
  --text-dark: #2C3E50;
  --text-light: #5A6C7D;
  
  /* Accent Colors */
  --accent-blue: #3498DB;
  --accent-green: #27AE60;
  --accent-orange: #F39C12;
  --success: #28A745;
  --warning: #FFC107;
  --error: #DC3545;
  
  /* Shadows for Neumorphism */
  --shadow-light: 8px 8px 16px rgba(163, 177, 198, 0.6);
  --shadow-dark: -8px -8px 16px rgba(255, 255, 255, 0.5);
  --shadow-inset: inset 6px 6px 12px rgba(163, 177, 198, 0.4), inset -6px -6px 12px rgba(255, 255, 255, 0.6);
  --shadow-hover: 12px 12px 24px rgba(163, 177, 198, 0.8), -12px -12px 24px rgba(255, 255, 255, 0.7);
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Source Sans Pro', sans-serif;
  --font-size-h1: clamp(2.5rem, 5vw, 4rem);
  --font-size-h2: clamp(2rem, 4vw, 3rem);
  --font-size-h3: clamp(1.5rem, 3vw, 2rem);
  --font-size-body: 1.1rem;
  --font-size-small: 0.95rem;
  
  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: 80px 0;
  --element-margin: 2rem;
  --border-radius: 20px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--light-gray);
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

a:hover {
  color: var(--primary-dark);
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  color: var(--text-dark);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-blue));
  border-radius: 2px;
}

/* Buttons - Global Styles */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
  background: var(--light-gray);
  box-shadow: var(--shadow-light), var(--shadow-dark);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: var(--transition-medium);
  z-index: 1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-inset);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  box-shadow: 0 12px 30px rgba(74, 144, 226, 0.4);
}

.btn-outline {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-green), var(--primary-color));
  color: var(--white);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(248, 249, 250, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition-medium);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo h2 {
  color: var(--primary-color);
  margin: 0;
  font-size: 1.8rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition-fast);
}

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

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(248, 249, 250, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu {
  list-style: none;
  padding: 1rem 0;
}

.mobile-menu li {
  text-align: center;
  padding: 0.5rem 0;
}

.mobile-menu a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.7), rgba(74, 144, 226, 0.5));
}

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

.hero-title {
  color: var(--white);
  font-size: var(--font-size-h1);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
  padding: var(--section-padding);
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light), var(--shadow-dark);
  object-fit: cover;
}

/* Services Section */
.services {
  padding: var(--section-padding);
  background: var(--light-gray);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-light), var(--shadow-dark);
  transition: var(--transition-medium);
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-icon img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Methodology Section */
.methodology {
  padding: var(--section-padding);
  background: var(--white);
}

.methodology-steps {
  display: grid;
  gap: 3rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: var(--light-gray);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light), var(--shadow-dark);
  transition: var(--transition-medium);
}

.step:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-hover);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-light), var(--shadow-dark);
}

.step h3 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.step p {
  color: var(--text-light);
  margin: 0;
}

.progress-indicator {
  width: 200px;
  height: 8px;
  background: var(--gray-300);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-inset);
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-blue));
  border-radius: 4px;
  transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Instructors Section */
.instructors {
  padding: var(--section-padding);
  background: var(--light-gray);
}

.instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light), var(--shadow-dark);
  transition: var(--transition-medium);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.card-image {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

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

.card-content {
  padding: 2rem;
  text-align: center;
}

.card-content h3 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.instructor-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* Pricing Section */
.pricing {
  padding: var(--section-padding);
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.pricing-card {
  background: var(--light-gray);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-light), var(--shadow-dark);
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
  color: var(--white);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--accent-orange);
  color: var(--white);
  padding: 5px 40px;
  font-size: 0.8rem;
  font-weight: 700;
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.pricing-card.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.pricing-header {
  margin-bottom: 2rem;
}

.pricing-card h3 {
  margin-bottom: 1rem;
}

.pricing-card.featured h3 {
  color: var(--white);
}

.price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.pricing-card.featured .price {
  color: var(--white);
}

.price-period {
  color: var(--text-light);
  font-size: 0.9rem;
}

.pricing-card.featured .price-period {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-features {
  flex-grow: 1;
  margin-bottom: 2rem;
}

.pricing-features ul {
  list-style: none;
  text-align: left;
}

.pricing-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-light);
}

.pricing-card.featured .pricing-features li {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 700;
}

/* Clientele Section */
.clientele {
  padding: var(--section-padding);
  background: var(--light-gray);
}

.clientele-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light), var(--shadow-dark);
  transition: var(--transition-medium);
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-light);
  font-weight: 600;
}

.clientele-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-light), var(--shadow-dark);
  transition: var(--transition-medium);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--primary-color);
  opacity: 0.3;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.testimonial-author strong {
  color: var(--text-dark);
  font-weight: 700;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Resources Section */
.resources {
  padding: var(--section-padding);
  background: var(--white);
}

.resources-intro {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: var(--text-light);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.resource-card {
  background: var(--light-gray);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-light), var(--shadow-dark);
  transition: var(--transition-medium);
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.resource-card h3 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.resource-links li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

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

.resource-links a {
  font-weight: 600;
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.resource-links a:hover {
  color: var(--primary-dark);
}

/* Blog Section */
.blog {
  padding: var(--section-padding);
  background: var(--light-gray);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light), var(--shadow-dark);
  transition: var(--transition-medium);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.blog-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.blog-date {
  color: var(--text-light);
}

.blog-category {
  color: var(--primary-color);
  background: rgba(74, 144, 226, 0.1);
  padding: 0.2rem 0.8rem;
  border-radius: 15px;
  font-weight: 600;
}

.blog-content h3 {
  margin-bottom: 1rem;
}

.blog-content h3 a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition-fast);
}

.blog-content h3 a:hover {
  color: var(--primary-color);
}

.blog-content p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.read-more {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-fast);
  margin-top: auto;
}

.read-more:hover {
  color: var(--primary-dark);
  transform: translateX(5px);
}

.read-more::after {
  content: '→';
  margin-left: 0.5rem;
  transition: var(--transition-fast);
}

.read-more:hover::after {
  transform: translateX(5px);
}

/* Contact Form Section */
.contact-form {
  padding: var(--section-padding);
  background: var(--white);
}

.contact-form-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.form-container {
  background: var(--light-gray);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light), var(--shadow-dark);
}

.contact-form-element {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem 1.5rem;
  border: 2px solid var(--gray-300);
  border-radius: 15px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  transition: var(--transition-fast);
  box-shadow: var(--shadow-inset);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1), var(--shadow-inset);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-details h3 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.contact-details p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.5rem;
}

.contact-item a {
  color: var(--primary-color);
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--primary-dark);
}

/* Footer */
.footer {
  background: var(--gray-800);
  color: var(--gray-300);
  padding: 3rem 0 1.5rem;
}

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

.footer-section h3,
.footer-section h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-section p {
  color: var(--gray-400);
  line-height: 1.6;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--gray-400);
  transition: var(--transition-fast);
}

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

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: var(--gray-400);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  transition: var(--transition-fast);
  text-decoration: none;
}

.social-links a:hover {
  color: var(--white);
  background: var(--primary-color);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-600);
}

.footer-bottom p {
  color: var(--gray-500);
  margin: 0;
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gray);
  padding: 2rem;
}

.success-content {
  text-align: center;
  max-width: 600px;
  padding: 3rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light), var(--shadow-dark);
}

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

/* Privacy and Terms Pages */
.page-content {
  padding-top: 120px;
  padding-bottom: var(--section-padding);
  min-height: 100vh;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light), var(--shadow-dark);
}

/* Curved Grid Elements */
.curved-grid {
  position: relative;
  transform: perspective(1000px) rotateX(2deg);
}

.curved-element {
  transform: translateZ(0) rotate(0.5deg);
  transition: transform var(--transition-medium);
}

.curved-element:hover {
  transform: translateZ(20px) rotate(-0.5deg);
}

/* Non-linear Animations */
@keyframes floatAnimation {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(1deg); }
  50% { transform: translateY(-5px) rotate(0deg); }
  75% { transform: translateY(-15px) rotate(-1deg); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: var(--shadow-light), var(--shadow-dark); }
  50% { box-shadow: var(--shadow-hover), 0 0 30px rgba(74, 144, 226, 0.3); }
}

.animate-float {
  animation: floatAnimation 6s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulseGlow 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }
  
  .about-content,
  .contact-form-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .methodology .step {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }
  
  .progress-indicator {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-mobile.active {
    display: block;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .services-grid,
  .pricing-grid,
  .instructors-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .clientele-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .clientele-testimonials {
    grid-template-columns: 1fr;
  }
  
  .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  
  .service-card,
  .pricing-card,
  .form-container {
    padding: 1.5rem;
  }
  
  .clientele-stats {
    grid-template-columns: 1fr;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .content-wrapper {
    padding: 2rem 1.5rem;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .btn,
  .mobile-menu-toggle,
  .nav-mobile {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: black;
    background: white;
  }
  
  .page-content {
    padding-top: 0;
  }
  
  .section-title {
    page-break-after: avoid;
  }
  
  .card,
  .testimonial-card,
  .blog-card {
    page-break-inside: avoid;
  }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-background {
    background-attachment: scroll;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --text-dark: #000000;
    --text-light: #333333;
    --primary-color: #0066CC;
    --primary-dark: #004499;
  }
  
  .btn {
    border: 2px solid currentColor;
  }
}

/* Focus Styles for Keyboard Navigation */
.btn:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}

/* Loading States */
.loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--primary-color);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}