/* Base Variables */
:root {
  /* Colors */
  --primary-color: #00a3e0;
  --primary-dark: #0082b3;
  --primary-light: #5ccff6;
  --secondary-color: #4a5568;
  --secondary-dark: #2d3748;
  --secondary-light: #a0aec0;
  --accent-color: #38b2ac;
  --accent-dark: #2c7a7b;
  --accent-light: #4fd1c5;
  
  /* Neutral Colors */
  --neutral-100: #f7fafc;
  --neutral-200: #edf2f7;
  --neutral-300: #e2e8f0;
  --neutral-400: #cbd5e0;
  --neutral-500: #a0aec0;
  --neutral-600: #718096;
  --neutral-700: #4a5568;
  --neutral-800: #2d3748;
  --neutral-900: #1a202c;
  
  /* UI Colors */
  --success: #48bb78;
  --warning: #ed8936;
  --error: #f56565;
  --info: #4299e1;
  
  /* Typography */
  --font-heading: 'Archivo Black', sans-serif;
  --font-body: 'Roboto', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 20px rgba(0,0,0,0.1), 0 3px 6px rgba(0,0,0,0.05);
  --shadow-xl: 0 15px 25px rgba(0,0,0,0.15), 0 5px 10px rgba(0,0,0,0.05);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;
  
  /* Container width */
  --container-max-width: 1200px;
  --container-padding: 1.5rem;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

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

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

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

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

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

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

/* Section Styles */
section {
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-md);
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: var(--radius-full);
}

.section-header p {
  color: var(--neutral-600);
  font-size: 1.2rem;
}

/* Button Styles */
.btn,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

.btn-block {
  display: block;
  width: 100%;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.header.scrolled {
  padding: 0.5rem 0;
  background: rgba(255, 255, 255, 0.98);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

.logo a {
  color: var(--neutral-900);
}

.nav-desktop {
  display: flex;
}

.nav-desktop ul {
  display: flex;
  list-style: none;
  margin: 0;
}

.nav-desktop li {
  margin-left: var(--space-lg);
}

.nav-desktop a {
  color: var(--neutral-800);
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
}

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

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

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

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  height: 2px;
  background-color: var(--neutral-900);
  transition: all var(--transition-normal);
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: var(--shadow-lg);
  padding: 1rem;
  transform: translateY(-10px);
  opacity: 0;
  transition: all var(--transition-normal);
}

.nav-mobile.active {
  transform: translateY(0);
  opacity: 1;
}

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

.nav-mobile li {
  margin-bottom: var(--space-sm);
}

.nav-mobile a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--neutral-800);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
}

.nav-mobile a:hover {
  background-color: var(--neutral-200);
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  margin-top: 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

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

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

.hero-title {
  font-size: 4rem;
  margin-bottom: var(--space-md);
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  animation: fadeInDown 1s both;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  color: white;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  animation: fadeInUp 1s 0.3s both;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  animation: fadeIn 1s 0.6s both;
}

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

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

.feature-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.feature-icon {
  margin-bottom: var(--space-md);
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card h3 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
  color: var(--neutral-900);
  position: relative;
}

.feature-card h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: var(--radius-full);
}

/* Projects/Courses Section */
.projects {
  background-color: white;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
}

.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  background-color: var(--neutral-100);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

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

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

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

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

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

.card-content h3 {
  margin-bottom: var(--space-sm);
  color: var(--neutral-900);
}

.card-content p {
  margin-bottom: var(--space-lg);
  color: var(--neutral-700);
  flex-grow: 1;
}

.card-content .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Portfolio/Slider Section */
.portfolio {
  background-color: var(--neutral-200);
}

.custom-slider {
  position: relative;
  margin: 0 auto;
  max-width: 1000px;
}

.slider-container {
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
  height: 500px;
}

.slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.slider-item.active {
  opacity: 1;
  z-index: 1;
}

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--space-lg);
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  z-index: 2;
  transform: translateY(0);
  transition: transform var(--transition-normal);
}

.slider-item:hover .slider-caption {
  transform: translateY(-10px);
}

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

.slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-md);
}

.prev-btn, .next-btn {
  background-color: var(--neutral-800);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-normal);
}

.prev-btn:hover, .next-btn:hover {
  background-color: var(--primary-color);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--neutral-400);
  cursor: pointer;
  transition: background-color var(--transition-normal), transform var(--transition-normal);
}

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

.dot:hover {
  background-color: var(--primary-light);
}

/* Success Stories Section */
.success-stories {
  background-color: white;
}

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

.story-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  background-color: var(--neutral-100);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.story-card .card-image {
  width: 100%;
  padding-top: var(--space-lg);
}

.story-card .image-container {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto;
  overflow: hidden;
  border: 4px solid var(--primary-color);
}

.story-position {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

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

/* External Resources Section */
.external-resources {
  background-color: var(--neutral-200);
}

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

.resource-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
}

.resource-card h3 {
  margin-bottom: var(--space-md);
  color: var(--primary-color);
}

.resource-card ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.resource-card li {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
  position: relative;
}

.resource-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.resource-card a {
  font-weight: 500;
  transition: color var(--transition-normal);
}

.resource-card a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Press Section */
.press {
  background-color: white;
}

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

.press-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  background-color: var(--neutral-100);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

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

.press-date {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.press-card p {
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.press-link {
  color: var(--primary-color);
  font-weight: 500;
  margin-top: auto;
  display: inline-block;
  position: relative;
  padding-right: 1.5rem;
}

.press-link::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-normal);
}

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

.press-link:hover::after {
  transform: translate(5px, -50%);
}

/* Contact Section */
.contact {
  background-color: var(--neutral-100);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

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

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

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

.contact-map {
  grid-column: 1 / -1;
  margin-top: var(--space-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.contact-form {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

.form-group label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--neutral-800);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-normal);
}

.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(0, 163, 224, 0.1);
}

/* Footer Section */
.footer {
  background-color: var(--neutral-900);
  color: var(--neutral-300);
  padding-top: var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--neutral-800);
}

.footer h3 {
  color: white;
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
}

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

.social-links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.social-links a {
  color: var(--neutral-400);
  transition: color var(--transition-normal);
}

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

.footer-nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: var(--space-sm);
}

.footer-nav a {
  color: var(--neutral-400);
  transition: color var(--transition-normal);
}

.footer-nav a:hover {
  color: white;
}

.footer-legal ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-legal li {
  margin-bottom: var(--space-sm);
}

.footer-legal a {
  color: var(--neutral-400);
  transition: color var(--transition-normal);
}

.footer-legal a:hover {
  color: white;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.newsletter-form input {
  padding: 0.75rem;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.newsletter-form button {
  margin-top: var(--space-sm);
}

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

.footer-bottom p {
  margin-bottom: var(--space-sm);
  color: var(--neutral-500);
  font-size: 0.9rem;
}

.disclaimer {
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
}

/* Success, Terms, Privacy Pages */
.success-page,
.terms-page,
.privacy-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-top: 100px;
  text-align: center;
}

.success-content,
.terms-content,
.privacy-content {
  max-width: 800px;
  padding: var(--space-xl);
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.terms-page,
.privacy-page {
  text-align: left;
}

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

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

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

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .hero-buttons .btn {
    margin-bottom: var(--space-sm);
  }
  
  .nav-desktop {
    display: none;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .nav-mobile.active {
    display: block;
  }
  
  .feature-card,
  .project-card,
  .story-card,
  .press-card {
    max-width: 450px;
    margin: 0 auto;
  }
  
  .slider-container {
    height: 350px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  section {
    padding: var(--space-lg) 0;
  }
  
  .section-header {
    margin-bottom: var(--space-lg);
  }
  
  .slider-container {
    height: 250px;
  }
  
  .slider-caption {
    padding: var(--space-md);
  }
  
  .slider-controls {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .prev-btn, .next-btn {
    margin: 0 var(--space-sm) var(--space-sm);
  }
  
  .contact-form {
    padding: var(--space-lg);
  }
}

/* AOS Animation Library Custom Styles */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* Script-related styles */
.burger-menu.active span:first-child {
  transform: translateY(9px) rotate(45deg);
}

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

.burger-menu.active span:last-child {
  transform: translateY(-9px) rotate(-45deg);
}

/* Terms and Privacy Pages */
.terms-page,
.privacy-page {
  padding-top: 100px;
}

.terms-content,
.privacy-content {
  padding-top: 2rem;
}

/* Read More Links */
.read-more {
  color: var(--primary-color);
  font-weight: 500;
  position: relative;
  padding-right: 1.5rem;
  display: inline-block;
}

.read-more::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-normal);
}

.read-more:hover {
  color: var(--primary-dark);
}

.read-more:hover::after {
  transform: translate(5px, -50%);
}

/* For Success page */
.success-page {
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.success-content h1 {
  margin-bottom: var(--space-lg);
}

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

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }