:root {
  /* Color scheme */
  --primary-color: #ff3366;
  --primary-dark: #d61a4b;
  --primary-light: #ff6699;
  --secondary-color: #2e3bff;
  --secondary-dark: #181ecb;
  --secondary-light: #6975ff;
  --accent-color: #00e1b5;
  --dark-color: #222233;
  --light-color: #f8f9fa;
  --text-color: #333344;
  --text-muted: #666677;
  --text-light: #ffffff;
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  
  /* Typography */
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Nunito', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Borders and Shadows */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  --shadow-brutalist: 8px 8px 0 rgba(0, 0, 0, 0.8);
  
  /* Animations */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Base styles */
body {
  font-family: var(--font-body);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

.section-title {
  position: relative;
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-subtitle {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
  color: var(--text-muted);
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Layout */
section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

/* Neo-brutalist elements */
.brutalist-border {
  border: 3px solid var(--dark-color);
  box-shadow: var(--shadow-brutalist);
  transform: rotate(-1deg);
}

.brutalist-card {
  background-color: var(--light-color);
  border: 3px solid var(--dark-color);
  box-shadow: var(--shadow-brutalist);
  transform: rotate(1deg);
  transition: transform var(--transition-medium);
}

.brutalist-card:hover {
  transform: rotate(-1deg) translateY(-5px);
}

/* Button styles */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 2px solid transparent;
}

.btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  transition: all var(--transition-medium);
  z-index: -1;
}

.btn:hover::after {
  height: 100%;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--text-light);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-hero {
  font-size: 1.1rem;
  padding: 1rem 2rem;
  margin: 0.5rem;
}

/* Header & Navigation */
.header-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(34, 34, 51, 0.9);
  backdrop-filter: blur(10px);
  transition: all var(--transition-medium);
}

.header-section.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(34, 34, 51, 0.95);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
}

.logo-text {
  letter-spacing: 2px;
}

.nav-link {
  color: var(--text-light) !important;
  font-weight: 600;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: all var(--transition-medium);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-medium);
}

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

.navbar-toggler {
  border-color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: var(--spacing-xl) 0;
  margin-top: 0;
  color: var(--text-light);
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.8rem;
  margin-bottom: var(--spacing-md);
  font-family: var(--font-heading);
  font-weight: 500;
}

.hero-text {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  margin-top: var(--spacing-md);
}

/* Features Section */
.features-section {
  background-color: var(--light-color);
}

.feature-card {
  height: 100%;
  border: none;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  margin-bottom: var(--spacing-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: white;
  box-shadow: var(--shadow-md);
}

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

.feature-card .card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

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

.feature-card .card-content {
  padding: var(--spacing-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.feature-card h3 {
  color: var(--dark-color);
  margin-bottom: var(--spacing-sm);
  position: relative;
  display: inline-block;
}

.feature-card h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
}

.stat-widget {
  background: var(--gradient-secondary);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-md);
  color: var(--text-light);
  height: 100%;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Tournaments/Webinars Section */
.tournaments-section {
  background-color: var(--dark-color);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.tournaments-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./image/pattern-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.tournaments-section .container {
  position: relative;
  z-index: 1;
}

.timeline-container {
  position: relative;
  margin: var(--spacing-lg) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  z-index: -1;
}

.timeline-item {
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.timeline-date {
  background: var(--primary-color);
  color: var(--text-light);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-md);
  display: inline-block;
  margin-bottom: var(--spacing-sm);
  box-shadow: var(--shadow-md);
}

.timeline-content .card {
  border: none;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.timeline-content .card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.timeline-content .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline-content .card-content {
  padding: var(--spacing-md);
  color: var(--text-light);
}

.custom-slider {
  margin-top: var(--spacing-lg);
  position: relative;
}

.slider-container {
  display: flex;
  overflow-x: auto;
  gap: var(--spacing-md);
  padding-bottom: var(--spacing-md);
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--dark-color);
}

.slider-container::-webkit-scrollbar {
  height: 6px;
}

.slider-container::-webkit-scrollbar-track {
  background: var(--dark-color);
}

.slider-container::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 20px;
}

.slider-item {
  min-width: 320px;
  flex: 0 0 auto;
}

.workshop-card {
  height: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--text-light);
}

.workshop-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: var(--shadow-brutalist);
}

.workshop-card .card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

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

.workshop-card .card-content {
  padding: var(--spacing-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-md);
  gap: var(--spacing-sm);
}

.slider-prev, .slider-next {
  background: var(--primary-color);
  color: var(--text-light);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-medium);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-prev:hover, .slider-next:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

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

.instructor-card {
  height: 100%;
  border: none;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.instructor-card .card-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

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

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

.instructor-card .card-content {
  padding: var(--spacing-md);
  background-color: white;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.instructor-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.social-links {
  margin-top: var(--spacing-sm);
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
}

.social-links a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-medium);
  padding: 0.25rem 0.5rem;
  border-radius: var(--border-radius-sm);
  background-color: rgba(255, 51, 102, 0.1);
}

.social-links a:hover {
  color: var(--text-light);
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

/* External Resources */
.external-resources-section {
  background: var(--gradient-primary);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.external-resources-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./image/pattern-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.external-resources-section .container {
  position: relative;
  z-index: 1;
}

.resource-card {
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.resource-card .card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

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

.resource-card .card-content {
  padding: var(--spacing-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.resource-card h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--text-light);
}

.resource-card .btn-outline-primary {
  background: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
  margin-top: auto;
}

.resource-card .btn-outline-primary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-light);
}

/* Customer Stories Section */
.stories-section {
  background-color: var(--light-color);
}

.story-card {
  height: 100%;
  border: none;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--spacing-md);
  background-color: white;
}

.story-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: var(--shadow-brutalist);
}

.story-card .card-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: var(--spacing-md);
  border: 5px solid var(--primary-color);
}

.story-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card .card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.story-card h3 {
  color: var(--dark-color);
  margin-bottom: var(--spacing-xs);
}

.rating {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
}

.testimonial-slider {
  margin-top: var(--spacing-lg);
  position: relative;
}

.testimonial-container {
  display: flex;
  overflow: hidden;
}

.testimonial-item {
  min-width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  text-align: center;
  background-color: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  margin: 0 var(--spacing-md);
  position: relative;
}

.testimonial-item::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: serif;
  font-size: 5rem;
  color: rgba(255, 51, 102, 0.1);
}

.testimonial-item p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: var(--spacing-md);
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-color);
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-md);
  gap: 10px;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 51, 102, 0.3);
  cursor: pointer;
  transition: all var(--transition-medium);
}

.slider-dots .dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Accolades Section */
.accolades-section {
  background-color: var(--dark-color);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.accolades-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./image/pattern-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.accolades-section .container {
  position: relative;
  z-index: 1;
}

.accolades-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.accolade-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

.accolade-icon {
  font-size: 2.5rem;
  min-width: 60px;
  text-align: center;
}

.accolade-content h3 {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xs);
}

.accolade-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.partners-container {
  margin-top: var(--spacing-xl);
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.partner-logo {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 80px;
  transition: all var(--transition-medium);
}

.partner-logo:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Contact Section */
.contact-section {
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./image/pattern-light.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-info {
  margin-bottom: var(--spacing-lg);
}

.contact-item {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.contact-icon {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.contact-text h3 {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xs);
}

.map-container {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.responsive-map {
  width: 100%;
  height: 300px;
  position: relative;
}

.responsive-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form-container {
  background-color: white;
  border-radius: var(--border-radius-md);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
}

.contact-form .form-label {
  font-weight: 600;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius-sm);
  padding: 0.75rem;
  transition: all var(--transition-medium);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(255, 51, 102, 0.25);
}

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

/* Footer */
.footer-section {
  background-color: var(--dark-color);
  color: var(--text-light);
  padding: var(--spacing-xl) 0 var(--spacing-md);
  position: relative;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./image/pattern-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.footer-section .container {
  position: relative;
  z-index: 1;
}

.footer-logo {
  margin-bottom: var(--spacing-md);
}

.footer-logo .logo-text {
  font-size: 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
}

.footer-description {
  margin-bottom: var(--spacing-md);
  color: rgba(255, 255, 255, 0.7);
}

.footer-section h4 {
  margin-bottom: var(--spacing-md);
  font-size: 1.2rem;
  position: relative;
  display: inline-block;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all var(--transition-medium);
  position: relative;
}

.footer-links a::before {
  content: '›';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all var(--transition-medium);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 15px;
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-md) 0;
}

.footer-contact li {
  margin-bottom: var(--spacing-xs);
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

/* Success page */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--light-color);
  padding: var(--spacing-xl) var(--spacing-md);
  text-align: center;
}

.success-content {
  max-width: 600px;
  background-color: white;
  border-radius: var(--border-radius-md);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
}

.success-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.success-title {
  margin-bottom: var(--spacing-sm);
}

/* Privacy & Terms pages */
.content-page {
  padding-top: 120px;
  min-height: 100vh;
  background-color: var(--light-color);
  color: var(--text-color);
}

.content-page .container {
  background-color: white;
  border-radius: var(--border-radius-md);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
}

.content-page h1 {
  margin-bottom: var(--spacing-md);
}

.content-page h2 {
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
  color: var(--primary-color);
}

.content-page p {
  margin-bottom: var(--spacing-md);
}

.content-page ul {
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-md);
}

.content-page ul li {
  margin-bottom: var(--spacing-xs);
}

/* About page */
.about-header {
  background-color: var(--dark-color);
  color: var(--text-light);
  padding: 150px 0 var(--spacing-xl);
  position: relative;
  text-align: center;
}

.about-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./image/about-header-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 0;
}

.about-header .container {
  position: relative;
  z-index: 1;
}

.about-section {
  padding: var(--spacing-xl) 0;
}

.about-image {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-section {
  background-color: var(--light-color);
  padding: var(--spacing-xl) 0;
}

.team-member {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-bottom: var(--spacing-md);
  object-fit: cover;
  border: 5px solid var(--primary-color);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
}

.team-member:hover img {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.team-member h3 {
  margin-bottom: var(--spacing-xs);
}

.team-member .role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .accolades-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  section {
    padding: var(--spacing-lg) 0;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .timeline::before {
    left: 0;
  }
  
  .feature-card, 
  .instructor-card, 
  .story-card,
  .resource-card {
    margin-bottom: var(--spacing-md);
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .footer-section [class^="col-"] {
    margin-bottom: var(--spacing-md);
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: var(--spacing-xs);
  }
  
  .stat-widget {
    margin-bottom: var(--spacing-sm);
  }
  
  .contact-form-container {
    padding: var(--spacing-md);
  }
}