:root {
  /* Main colors */
  --primary-color: #FF5722;
  --primary-dark: #E64A19;
  --primary-light: #FFAB91;
  --secondary-color: #2196F3;
  --secondary-dark: #1976D2;
  --secondary-light: #BBDEFB;
  --accent-color: #FFC107;
  --accent-dark: #FFA000;
  --accent-light: #FFECB3;
  
  /* Neutral colors */
  --dark: #212121;
  --dark-gray: #424242;
  --medium-gray: #757575;
  --light-gray: #EEEEEE;
  --off-white: #F5F5F5;
  --white: #FFFFFF;
  
  /* Gradient backgrounds */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
  
  /* Shadows for neuromorphism */
  --shadow-small: 6px 6px 12px rgba(0, 0, 0, 0.1), -6px -6px 12px rgba(255, 255, 255, 0.4);
  --shadow-medium: 10px 10px 20px rgba(0, 0, 0, 0.1), -10px -10px 20px rgba(255, 255, 255, 0.4);
  --shadow-large: 15px 15px 30px rgba(0, 0, 0, 0.1), -15px -15px 30px rgba(255, 255, 255, 0.4);
  
  /* Border radius */
  --border-radius-small: 5px;
  --border-radius-medium: 10px;
  --border-radius-large: 20px;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  
  /* Font sizes */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-xxl: 2rem;
  --font-size-jumbo: 3rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Z-index layers */
  --z-index-dropdown: 1000;
  --z-index-sticky: 1020;
  --z-index-fixed: 1030;
  --z-index-modal-backdrop: 1040;
  --z-index-modal: 1050;
  --z-index-tooltip: 1060;
}

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

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

body {
  font-family: 'Nunito', sans-serif;
  font-size: var(--font-size-md);
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--off-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.btn-link {
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  transition: all var(--transition-medium);
}

.btn-link:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform var(--transition-medium);
}

.btn-link:hover {
  color: var(--primary-dark);
}

.btn-link:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Button styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-medium);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-medium);
  text-decoration: none;
  border: none;
  box-shadow: var(--shadow-small);
  position: relative;
  overflow: hidden;
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all var(--transition-medium);
  transform: skewX(-30deg);
}

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

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

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

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

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.btn-light {
  background: var(--white);
  color: var(--primary-color) !important;
}

.btn-light:hover {
  background: var(--off-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: var(--font-size-lg);
}

/* Section styles */
.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title:after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.section-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  color: var(--medium-gray);
}

/* Card styles */
.card {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  background: var(--white);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

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

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

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

.card-content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Header styles */
.header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: var(--z-index-fixed);
  transition: all var(--transition-medium);
}

.navbar {
  padding: 1rem 0;
  transition: padding var(--transition-medium);
}

.navbar-brand {
  font-family: 'Oswald', sans-serif;
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-color) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-link {
  color: var(--dark) !important;
  font-weight: 600;
  margin: 0 var(--space-sm);
  padding: var(--space-xs) var(--space-sm) !important;
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform var(--transition-medium);
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-top: 0;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: var(--space-lg);
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1s ease-out;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-lg);
  font-weight: 300;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.3s;
  animation-fill-mode: both;
}

.hero-cta {
  margin-bottom: var(--space-xl);
  animation: fadeIn 1s ease-out 0.6s;
  animation-fill-mode: both;
}

.stats-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
  animation: fadeIn 1s ease-out 0.9s;
  animation-fill-mode: both;
}

.stat-widget {
  text-align: center;
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: var(--border-radius-medium);
  min-width: 150px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform var(--transition-medium);
}

.stat-widget:hover {
  transform: translateY(-5px);
}

.stat-number {
  display: block;
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--accent-color);
}

.stat-text {
  font-size: var(--font-size-sm);
  font-weight: 600;
}

/* About Section */
.about-content {
  margin-bottom: var(--space-lg);
}

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

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

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

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

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

.progress-item span {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

.progress {
  height: 8px;
  border-radius: var(--border-radius-small);
  background-color: var(--light-gray);
  overflow: hidden;
  box-shadow: var(--shadow-small);
}

.progress-bar {
  background: var(--gradient-primary);
  transition: width var(--transition-slow);
}

/* Courses Section */
.course-card {
  height: 100%;
}

.course-details {
  display: flex;
  justify-content: space-between;
  margin: var(--space-md) 0;
  font-size: var(--font-size-sm);
  color: var(--medium-gray);
}

/* Webinars Section */
.webinar-card {
  position: relative;
  height: 100%;
}

.date-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--accent-color);
  color: var(--dark);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--border-radius-small);
  font-weight: 600;
  font-size: var(--font-size-xs);
  box-shadow: var(--shadow-small);
  z-index: 1;
}

.webinar-presenter {
  margin: var(--space-md) 0;
  font-size: var(--font-size-sm);
  color: var(--medium-gray);
}

/* Articles Section */
.article-card {
  height: 100%;
}

/* Process Section */
.process-steps {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-steps:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 23px;
  width: 4px;
  background: var(--light-gray);
  border-radius: 2px;
}

.process-step {
  position: relative;
  padding-left: 60px;
  margin-bottom: var(--space-lg);
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-medium);
}

.step-content {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-medium);
}

.step-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

/* Media Section */
.media-video {
  position: relative;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-medium);
  margin-bottom: var(--space-lg);
}

.media-video img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.media-video:hover img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-medium);
}

.play-button i {
  font-size: 2.5rem;
  color: var(--primary-color);
  transition: all var(--transition-medium);
}

.media-video:hover .play-button {
  background: var(--white);
  transform: translate(-50%, -50%) scale(1.1);
}

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

.media-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-small);
  transition: transform var(--transition-medium);
}

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

.media-logo {
  flex: 0 0 80px;
  margin-right: var(--space-md);
}

.media-logo img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--border-radius-small);
}

.media-content h4 {
  margin-bottom: var(--space-xs);
  color: var(--dark);
}

.media-content p {
  margin-bottom: 0;
  font-style: italic;
  color: var(--medium-gray);
}

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

.resource-item {
  background: var(--white);
  border-radius: var(--border-radius-medium);
  padding: var(--space-lg);
  box-shadow: var(--shadow-medium);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-medium);
}

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

.resource-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: var(--space-md);
  text-align: center;
}

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

.resource-content h3 {
  margin-bottom: var(--space-sm);
  color: var(--dark);
  text-align: center;
}

.resource-content p {
  margin-bottom: var(--space-md);
  color: var(--medium-gray);
  text-align: center;
  flex-grow: 1;
}

.resource-content .btn {
  align-self: center;
}

/* Community Section */
.community {
  padding: var(--space-xxl) 0;
  color: var(--white);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.community .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}

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

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

.feature-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: var(--border-radius-medium);
  padding: var(--space-lg);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform var(--transition-medium);
}

.feature-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: var(--space-md);
}

.feature-item h3 {
  margin-bottom: var(--space-sm);
  color: var(--white);
}

.feature-item p {
  color: var(--light-gray);
  margin-bottom: 0;
}

.community-cta {
  text-align: center;
  margin-top: var(--space-lg);
}

/* Workshops Section */
.workshop-card {
  height: 100%;
}

.workshop-badge {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--white);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--border-radius-small);
  font-weight: 600;
  font-size: var(--font-size-xs);
  margin-bottom: var(--space-sm);
}

.workshop-details {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: var(--space-md) 0;
  font-size: var(--font-size-sm);
  color: var(--medium-gray);
}

/* Careers Section */
.career-paths {
  margin-top: var(--space-lg);
}

.career-path-item {
  background: var(--white);
  border-radius: var(--border-radius-medium);
  padding: var(--space-lg);
  box-shadow: var(--shadow-medium);
  height: 100%;
  transition: transform var(--transition-medium);
}

.career-path-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-large);
}

.career-path-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: var(--space-md);
  text-align: center;
}

.career-path-item h3 {
  margin-bottom: var(--space-sm);
  color: var(--dark);
  text-align: center;
}

.career-path-item p {
  margin-bottom: var(--space-md);
  color: var(--medium-gray);
}

.salary-range {
  background: var(--light-gray);
  padding: var(--space-sm);
  border-radius: var(--border-radius-small);
  margin-bottom: var(--space-md);
}

.salary-range span {
  font-weight: 600;
  color: var(--dark);
  display: block;
  margin-bottom: var(--space-xs);
}

.required-skills span {
  font-weight: 600;
  color: var(--dark);
  display: block;
  margin-bottom: var(--space-xs);
}

.required-skills ul {
  list-style-type: none;
  padding-left: var(--space-md);
}

.required-skills ul li {
  position: relative;
  margin-bottom: var(--space-xs);
}

.required-skills ul li:before {
  content: '•';
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: -15px;
}

/* FAQ Section */
.accordion {
  box-shadow: var(--shadow-medium);
  border-radius: var(--border-radius-medium);
  overflow: hidden;
}

.accordion-item {
  border: none;
  background: var(--white);
}

.accordion-button {
  font-weight: 600;
  font-family: 'Nunito', sans-serif;
  padding: var(--space-lg);
  color: var(--dark);
  background: var(--white);
  border: none !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: rgba(255, 87, 34, 0.05);
}

.accordion-button::after {
  background-size: 1.25rem;
  transition: all var(--transition-medium);
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--medium-gray);
}

/* Contact Form Section */
.contact-form-container {
  background: var(--white);
  border-radius: var(--border-radius-medium);
  padding: var(--space-lg);
  box-shadow: var(--shadow-medium);
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--dark);
}

.contact-form .form-control {
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius-small);
  padding: 0.75rem;
  box-shadow: var(--shadow-small);
  transition: all var(--transition-medium);
}

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

.contact-form .form-select {
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius-small);
  padding: 0.75rem;
  box-shadow: var(--shadow-small);
  transition: all var(--transition-medium);
}

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

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

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}

.contact-icon {
  flex: 0 0 50px;
  height: 50px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: var(--space-md);
  box-shadow: var(--shadow-small);
}

.contact-text h3 {
  margin-bottom: var(--space-xs);
  color: var(--dark);
}

.contact-text p {
  margin-bottom: 0;
  color: var(--medium-gray);
}

.contact-map {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  margin-top: var(--space-lg);
}

.contact-map img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

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

.footer-content {
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  color: var(--light-gray);
}

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

.footer-social h4 {
  color: var(--white);
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-md);
}

.social-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.social-links li a {
  color: var(--light-gray);
  transition: color var(--transition-fast);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.social-links li a:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.footer-nav h4,
.footer-legal h4,
.footer-contact h4 {
  color: var(--white);
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-md);
}

.footer-nav ul,
.footer-legal ul {
  list-style: none;
  padding: 0;
}

.footer-nav ul li,
.footer-legal ul li {
  margin-bottom: var(--space-xs);
}

.footer-nav ul li a,
.footer-legal ul li a {
  color: var(--light-gray);
  transition: color var(--transition-fast);
}

.footer-nav ul li a:hover,
.footer-legal ul li a:hover {
  color: var(--primary-color);
}

.footer-contact address {
  margin-bottom: 0;
  font-style: normal;
}

.footer-contact address p {
  margin-bottom: var(--space-xs);
  color: var(--light-gray);
}

.footer-bottom {
  padding-top: var(--space-md);
  text-align: center;
}

.copyright p {
  margin-bottom: 0;
  color: var(--light-gray);
  font-size: var(--font-size-sm);
}

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

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

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

.success-title {
  margin-bottom: var(--space-md);
  color: var(--dark);
}

.success-message {
  margin-bottom: var(--space-lg);
  color: var(--medium-gray);
}

/* Privacy and Terms pages */
.privacy-page,
.terms-page {
  padding-top: 100px;
  padding-bottom: var(--space-xl);
}

.privacy-content,
.terms-content {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-medium);
}

.privacy-title,
.terms-title {
  margin-bottom: var(--space-lg);
  color: var(--dark);
}

.privacy-section,
.terms-section {
  margin-bottom: var(--space-xl);
}

.privacy-section h3,
.terms-section h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.privacy-section p,
.terms-section p {
  color: var(--medium-gray);
  margin-bottom: var(--space-md);
}

.privacy-section ul,
.terms-section ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.privacy-section ul li,
.terms-section ul li {
  margin-bottom: var(--space-sm);
  color: var(--medium-gray);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 1;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 1;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media queries */
@media (max-width: 992px) {
  :root {
    --font-size-jumbo: 2.5rem;
    --font-size-xxl: 1.75rem;
    --font-size-xl: 1.25rem;
  }
  
  .navbar {
    padding: 0.5rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .stats-container {
    gap: var(--space-md);
  }
  
  .process-steps:before {
    left: 19px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
  }
  
  .process-step {
    padding-left: 50px;
  }
  
  .contact-info {
    margin-top: var(--space-xl);
  }
}

@media (max-width: 768px) {
  .section {
    padding: var(--space-lg) 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .stat-widget {
    min-width: 120px;
    padding: var(--space-sm);
  }
  
  .community-features {
    grid-template-columns: 1fr;
  }
  
  .resources-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  :root {
    --space-xl: 2.5rem;
    --space-lg: 1.5rem;
    --space-md: 0.75rem;
    --space-sm: 0.5rem;
    --space-xs: 0.25rem;
  }
  
  .hero {
    height: auto;
    padding-top: 100px;
    padding-bottom: var(--space-xl);
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .stats-container {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .stat-widget {
    min-width: 100%;
  }
  
  .step-content {
    padding: var(--space-md);
  }
}