:root {
  /* Primary Colors */
  --primary-100: #f0f7ff;
  --primary-200: #d6e8ff;
  --primary-300: #aac8ff;
  --primary-400: #7aa2ff;
  --primary-500: #4e7bff;
  --primary-600: #2f57d2;
  --primary-700: #1a3aa6;
  --primary-800: #0e2173;
  --primary-900: #061040;
  
  /* Neutral Colors */
  --neutral-100: #ffffff;
  --neutral-200: #f7f7f7;
  --neutral-300: #e6e6e6;
  --neutral-400: #c4c4c4;
  --neutral-500: #9e9e9e;
  --neutral-600: #717171;
  --neutral-700: #4a4a4a;
  --neutral-800: #333333;
  --neutral-900: #1a1a1a;
  
  /* Accent Colors */
  --accent-100: #fff3e0;
  --accent-200: #ffe0b2;
  --accent-300: #ffcc80;
  --accent-400: #ffb74d;
  --accent-500: #ffa726;
  --accent-600: #fb8c00;
  --accent-700: #f57c00;
  --accent-800: #ef6c00;
  --accent-900: #e65100;
  
  /* Success/Error Colors */
  --success: #4caf50;
  --error: #f44336;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  --gradient-secondary: linear-gradient(135deg, var(--accent-500), var(--accent-700));
  --gradient-dark: linear-gradient(135deg, rgba(26,26,26,0.95), rgba(10,10,10,0.98));
  --gradient-light: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(247,247,247,0.95));
  --overlay-dark: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
  --overlay-light: linear-gradient(rgba(255,255,255,0.6), rgba(247,247,247,0.8));
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-bg-dark: rgba(30, 30, 30, 0.2);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 24px rgba(0, 0, 0, 0.1);
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-round: 50%;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Source Sans Pro', sans-serif;
  --line-height: 1.6;
  
  /* Container width */
  --container-width: 1200px;
  --container-padding: 2rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* === BASE STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

header {
  background-color: #333333 !important;
}

body {
  font-family: var(--font-body);
  line-height: var(--line-height);
  color: var(--neutral-800);
  background-color: var(--neutral-200);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--neutral-900);
  font-weight: 700;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
}

h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-md);
  color: var(--neutral-700);
}

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

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

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

ul, ol {
  list-style-position: inside;
  margin-bottom: var(--space-md);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: var(--gradient-primary);
  margin: var(--space-md) auto 0;
  border-radius: var(--radius-sm);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--neutral-600);
  margin: -1.5rem auto var(--space-xl);
  max-width: 700px;
}

/* === UTILITY CLASSES === */
.text-center {
  text-align: center;
}

.flex {
  display: flex;
}

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

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-sm {
  gap: var(--space-sm);
}

.gap-md {
  gap: var(--space-md);
}

.gap-lg {
  gap: var(--space-lg);
}

.mt-md {
  margin-top: var(--space-md);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.my-md {
  margin-top: var(--space-md);
  margin-bottom: var(--space-md);
}

.py-md {
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
}

.py-lg {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

/* === GLASSMORPHISM === */
.glassmorphism {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-md);
}

.glassmorphism-dark {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(50, 50, 50, 0.2);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-md);
}

/* === ANIMATIONS === */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.animate-slide-left {
  animation: slideInLeft 0.8s ease forwards;
}

.animate-slide-right {
  animation: slideInRight 0.8s ease forwards;
}

.animate-pulse {
  animation: pulse 2s ease infinite;
}

.animate-float {
  animation: float 3s ease infinite;
}

.parallax-element {
  transition: transform 0.3s ease-out;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-medium);
  text-decoration: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  box-shadow: var(--shadow-md);
}

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

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

.secondary-btn {
  background: var(--gradient-secondary);
  color: white;
}

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

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

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

/* === FORM ELEMENTS === */
input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-md);
  background: var(--neutral-100);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--neutral-800);
  transition: border-color var(--transition-fast);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px var(--primary-200);
}

label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 600;
  color: var(--neutral-700);
}

.form-group {
  margin-bottom: var(--space-md);
}

.checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-left: 30px;
  margin-bottom: var(--space-sm);
  font-weight: normal;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--neutral-200);
  border: 1px solid var(--neutral-400);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.checkbox-container:hover input ~ .checkmark {
  background-color: var(--neutral-300);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary-500);
  border-color: var(--primary-500);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* === HEADER === */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-medium);
}

header.scrolled {
  background: var(--neutral-100);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 1001;
}

.logo img {
  height: 60px;
  width: auto;
}

.desktop-menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  gap: var(--space-md);
}

.desktop-menu a {
  font-weight: 600;
  color: var(--neutral-100);
  text-decoration: none;
  transition: color var(--transition-fast);
  padding: 0.5rem;
  position: relative;
}

header.scrolled .desktop-menu a {
  color: var(--neutral-800);
}

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

.desktop-menu a:hover {
  color: var(--primary-500);
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--neutral-100);
  border-radius: 3px;
  transition: all var(--transition-medium);
}

header.scrolled .mobile-menu-toggle span {
  background-color: var(--neutral-800);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-dark);
  z-index: 1000;
  padding: 80px var(--space-lg) var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu li {
  margin-bottom: var(--space-md);
}

.mobile-menu a {
  font-size: 1.5rem;
  color: var(--neutral-100);
  font-weight: 600;
  display: block;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* === HERO SECTION === */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--neutral-100);
  position: relative;
  padding: 8rem 0 4rem;
}

.hero-content {
  max-width: 800px;
  animation: fadeIn 1s ease-out;
}

.hero-section h1, .hero-section h2, .hero-section p {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.hero-stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.stat {
  text-align: center;
}

.counter {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  color: var(--primary-300);
  margin-bottom: var(--space-xs);
}

.label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--neutral-200);
}

/* === VISION SECTION === */
.vision-section {
  padding: var(--space-xl) 0;
}

.vision-content {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.vision-image {
  flex: 1;
}

.vision-text {
  flex: 1;
}

.progress-container {
  margin-top: var(--space-lg);
}

.progress-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
}

.progress-item span {
  flex: 0 0 100px;
  font-weight: 600;
}

.progress-bar {
  flex: 1;
  height: 8px;
  background-color: var(--neutral-300);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 var(--space-md);
}

.progress {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 4px;
  transition: width 1s ease-out;
}

/* === WEBINARS SECTION === */
.webinars-section {
  background-color: var(--neutral-100);
}

.webinars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
}

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

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

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

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

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

.date-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--primary-600);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.85rem;
}

.card-content {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-content h3 {
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
}

.card-content p {
  margin-bottom: var(--space-md);
}

.webinar-details {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: var(--space-md) 0;
  color: var(--neutral-600);
  font-size: 0.9rem;
}

/* === GALLERY SECTION === */
.gallery-section {
  background-color: var(--neutral-200);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 300px;
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

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

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

.gallery-overlay h3 {
  color: white;
  margin-bottom: var(--space-xs);
  font-size: 1.2rem;
}

.gallery-overlay p {
  color: var(--neutral-200);
  font-size: 0.9rem;
}

/* === RESOURCES SECTION === */
.resources-section {
  background: var(--neutral-100);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.resource-card {
  background: var(--neutral-100);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  text-align: center;
}

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

.resource-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  color: var(--neutral-800);
}

.resource-card p {
  margin-bottom: var(--space-lg);
  color: var(--neutral-600);
  font-size: 0.95rem;
}

.resource-link {
  color: var(--primary-600);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition-fast);
}

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

.resource-link:hover {
  color: var(--primary-700);
}

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

/* === PARTNERS SECTION === */
.partners-section {
  background-color: var(--neutral-200);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.partner-item {
  text-align: center;
  padding: var(--space-md);
  transition: transform var(--transition-medium);
}

.partner-item:hover {
  transform: translateY(-5px);
}

.partner-item img {
  height: 100px;
  width: auto;
  margin: 0 auto var(--space-md);
  object-fit: contain;
}

.partner-item h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}

.partner-item p {
  font-size: 0.9rem;
  color: var(--neutral-600);
}

/* === COMMUNITY SECTION === */
.community-section {
  background-color: var(--neutral-100);
}

.testimonials-slider {
  margin-bottom: var(--space-xl);
}

.testimonial {
  display: flex;
  align-items: center;
  padding: var(--space-lg);
  background: var(--neutral-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-lg);
}

.testimonial-image {
  flex: 0 0 120px;
  margin-right: var(--space-lg);
}

.testimonial-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-200);
}

.testimonial-content {
  flex: 1;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: var(--space-md);
  position: relative;
}

.testimonial-content p::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-200);
  position: absolute;
  left: -20px;
  top: -20px;
  opacity: 0.6;
}

.testimonial-content h4 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.company {
  color: var(--neutral-600);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

.rating {
  color: var(--accent-500);
  font-size: 1.2rem;
}

.community-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: var(--space-xl) 0;
}

.stat-box {
  text-align: center;
  padding: var(--space-md);
  min-width: 200px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-600);
  display: block;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 1rem;
  color: var(--neutral-600);
  font-weight: 600;
}

.community-cta {
  text-align: center;
  background: var(--gradient-primary);
  color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-xl);
}

.community-cta h3, .community-cta p {
  color: white;
}

.community-cta .btn {
  margin-top: var(--space-md);
  background: white;
  color: var(--primary-700);
}

.community-cta .btn:hover {
  background: var(--neutral-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* === WORKSHOPS SECTION === */
.workshops-section {
  background-color: var(--neutral-200);
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.workshop-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

.workshop-details {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: var(--space-md);
}

.duration, .price {
  font-weight: 600;
  color: var(--primary-600);
}

.workshop-dates {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: var(--space-md) 0;
  padding: var(--space-sm) 0;
  border-top: 1px solid var(--neutral-300);
  border-bottom: 1px solid var(--neutral-300);
  color: var(--neutral-700);
  font-size: 0.9rem;
}

/* === CAREERS SECTION === */
.careers-section {
  background-color: var(--neutral-100);
}

.careers-content {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
}

.careers-image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.careers-image img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-slow);
}

.careers-section:hover .careers-image img {
  transform: scale(1.03);
}

.careers-text {
  flex: 1;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.benefit-item {
  padding: var(--space-md);
  background: var(--neutral-200);
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform var(--transition-medium);
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-item i {
  font-size: 2rem;
  color: var(--primary-500);
  margin-bottom: var(--space-sm);
}

.benefit-item h4 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.benefit-item p {
  font-size: 0.9rem;
  color: var(--neutral-600);
}

.current-openings {
  margin-top: var(--space-xl);
}

.job-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
}

.job-card {
  padding: var(--space-md);
  background: var(--neutral-200);
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

.job-card h4 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.job-card p {
  font-size: 0.9rem;
  color: var(--neutral-600);
  margin-bottom: var(--space-md);
}

/* === CONTACT SECTION === */
.contact-section {
  background-color: var(--neutral-200);
}

.contact-content {
  display: flex;
  gap: var(--space-xl);
}

.contact-info {
  flex: 1;
}

.info-item {
  margin-bottom: var(--space-lg);
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-500);
  margin-bottom: var(--space-sm);
}

.info-item h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}

.info-item p {
  color: var(--neutral-700);
}

.map-container {
  margin-top: var(--space-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 300px;
}

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

.contact-form {
  flex: 1;
  padding: var(--space-lg);
}

.contact-form h3 {
  margin-bottom: var(--space-sm);
}

.contact-form p {
  margin-bottom: var(--space-lg);
}

/* === FOOTER === */
.footer-section {
  background: var(--gradient-dark);
  color: var(--neutral-200);
  padding: var(--space-xl) 0 var(--space-md);
}

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

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: var(--space-md);
}

.footer-logo p {
  color: var(--neutral-300);
}

.footer-links h3, .footer-services h3, .footer-contact h3 {
  color: var(--neutral-100);
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  position: relative;
}

.footer-links h3::after, .footer-services h3::after, .footer-contact h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 2px;
  width: 40px;
  background-color: var(--primary-500);
}

.footer-links ul, .footer-services ul, .footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li, .footer-services li, .footer-contact li {
  margin-bottom: var(--space-sm);
}

.footer-links a, .footer-contact a {
  color: var(--neutral-300);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.footer-services li {
  color: var(--neutral-300);
}

.footer-contact i {
  margin-right: var(--space-sm);
  color: var(--primary-400);
}

.social-links {
  margin-top: var(--space-lg);
}

.social-links a {
  display: inline-block;
  margin-right: var(--space-md);
  color: var(--neutral-300);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.copyright p {
  color: var(--neutral-400);
  font-size: 0.9rem;
  margin: 0;
}

.legal-links a {
  color: var(--neutral-400);
  text-decoration: none;
  margin-left: var(--space-md);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

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

/* === SUCCESS PAGE === */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--neutral-100);
  text-align: center;
  padding: var(--space-xl) var(--container-padding);
}

.success-content {
  max-width: 600px;
  animation: fadeIn 1s ease-out;
}

.success-icon {
  font-size: 5rem;
  color: var(--success);
  margin-bottom: var(--space-lg);
}

/* === ABOUT, PRIVACY, TERMS PAGES === */
.page-header {
  height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.page-header h1 {
  position: relative;
  z-index: 1;
  color: white;
}

.page-content {
  padding: 100px 0 var(--space-xl);
}

.page-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

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

/* === COOKIE CONSENT === */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: var(--space-md);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

#cookie-consent p {
  margin: 0 var(--space-md) var(--space-sm) 0;
  color: white;
}

#accept-cookies {
  background-color: var(--success);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  transition: background-color var(--transition-fast);
}

#accept-cookies:hover {
  background-color: #3d8b40;
}

#cookie-consent a {
  color: white;
  text-decoration: underline;
  margin-left: var(--space-sm);
}

/* === MEDIA QUERIES === */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .vision-content, .careers-content, .contact-content {
    flex-direction: column;
  }
  
  .hero-stats {
    gap: var(--space-md);
  }
  
  .counter {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .desktop-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .stat {
    flex: 0 0 45%;
    margin-bottom: var(--space-md);
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .copyright {
    margin-bottom: var(--space-md);
  }
  
  .legal-links a {
    margin: 0 var(--space-sm);
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .testimonial {
    flex-direction: column;
    text-align: center;
  }
  
  .testimonial-image {
    margin-right: 0;
    margin-bottom: var(--space-md);
  }
  
  .community-stats {
    flex-direction: column;
  }
  
  .stat-box {
    margin-bottom: var(--space-md);
  }
  
  .benefits-list {
    grid-template-columns: 1fr;
  }
}