:root {
  /* Primary colors */
  --primary: #0056b3;
  --primary-light: #3384d7;
  --primary-dark: #00408a;
  
  /* Secondary colors */
  --secondary: #5e17eb;
  --secondary-light: #7c42f5;
  --secondary-dark: #4512b3;
  
  /* Accent colors */
  --accent: #ff6b6b;
  --accent-light: #ff9e9e;
  --accent-dark: #e54b4b;
  
  /* Gradient colors */
  --gradient-start: #0056b3;
  --gradient-mid: #5e17eb;
  --gradient-end: #9c27b0;
  
  /* Neutral colors */
  --light: #ffffff;
  --light-gray: #f3f4f8;
  --medium-gray: #e0e0e0;
  --dark-gray: #4a4a4a;
  --dark: #212529;
  
  /* Shadow colors */
  --shadow-light: rgba(149, 157, 165, 0.1);
  --shadow-medium: rgba(149, 157, 165, 0.2);
  --shadow-dark: rgba(0, 0, 0, 0.3);
  
  /* Text colors */
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-light: #ffffff;
  
  /* Neomorphic shadows */
  --nm-shadow-light: 15px 15px 30px var(--shadow-light), -15px -15px 30px var(--light);
  --nm-shadow-medium: 10px 10px 20px var(--shadow-medium), -10px -10px 20px rgba(255, 255, 255, 0.8);
  --nm-shadow-pressed: inset 5px 5px 10px var(--shadow-medium), inset -5px -5px 10px rgba(255, 255, 255, 0.8);
  
  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition-medium: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  
  /* Border radius */
  --radius-small: 4px;
  --radius-medium: 8px;
  --radius-large: 16px;
  --radius-round: 50px;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  background-color: var(--light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: 3rem;
}

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

h2:after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.5rem;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  border-radius: var(--radius-small);
}

h3 {
  font-size: 1.75rem;
}

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

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

a:hover {
  color: var(--primary-light);
  text-decoration: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

.section-header p {
  max-width: 700px;
  margin: 0 auto;
}

/* Typography Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

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

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.text-accent {
  color: var(--accent);
}

/* Button Styles */
.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--radius-medium);
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-medium);
  z-index: -1;
}

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

.btn-primary {
  color: var(--light);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  box-shadow: 0 4px 15px rgba(0, 86, 179, 0.2);
}

.btn-primary:hover, .btn-primary:focus {
  color: var(--light);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  box-shadow: 0 6px 20px rgba(0, 86, 179, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--light);
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  border: none;
  box-shadow: 0 4px 15px rgba(94, 23, 235, 0.2);
}

.btn-secondary:hover, .btn-secondary:focus {
  color: var(--light);
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
  box-shadow: 0 6px 20px rgba(94, 23, 235, 0.3);
  transform: translateY(-2px);
}

.btn-accent {
  color: var(--light);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border: none;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
}

.btn-accent:hover, .btn-accent:focus {
  color: var(--light);
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
  transform: translateY(-2px);
}

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

.btn-outline-light:hover, .btn-outline-light:focus {
  color: var(--text-primary);
  background: var(--light);
  transform: translateY(-2px);
}

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

.btn-outline-primary:hover, .btn-outline-primary:focus {
  color: var(--light);
  background: var(--primary);
  transform: translateY(-2px);
}

.btn-link {
  background: none;
  border: none;
  padding: 0.5rem 0;
  color: var(--primary);
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.btn-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: var(--transition-medium);
}

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.25rem;
}

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

/* Neomorphic Card Styles */
.card {
  background-color: var(--light);
  border-radius: var(--radius-large);
  box-shadow: var(--nm-shadow-light);
  transition: var(--transition-medium);
  border: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.card-image {
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 100%;
}

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

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

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

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

.card-content p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
  flex: 1;
}

.card-content .btn {
  margin-top: auto;
}

/* Header Styles */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  transition: var(--transition-medium);
  z-index: 1000;
}

.header.scrolled {
  background-color: var(--light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.75rem;
  color: var(--primary-dark);
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem;
  color: var(--text-primary);
  position: relative;
  transition: var(--transition-medium);
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus {
  color: var(--primary);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: var(--transition-medium);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link:focus::after {
  width: 80%;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
  font-size: 1.25rem;
  color: var(--primary);
  transition: var(--transition-fast);
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* Hero Section */
.hero-section {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 150px;
  padding-bottom: 80px;
  color: var(--light);
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: var(--space-md);
  color: var(--light);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-text {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  color: var(--light);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Services Section */
.services-section {
  padding: var(--space-xxl) 0;
  background-color: var(--light);
}

.service-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.service-card .card-image {
  height: 230px;
  width: 100%;
  overflow: hidden;
}

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

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

/* Team Section */
.team-section {
  position: relative;
  padding: var(--space-xxl) 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--light);
}

.team-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.team-section .container {
  position: relative;
  z-index: 2;
}

.team-section .section-header h2, 
.team-section .section-header p {
  color: var(--light);
}

.team-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition-medium);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.team-card .card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

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

.team-card .card-content {
  padding: var(--space-lg);
  color: var(--text-primary);
}

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

/* Insights Section */
.insights-section {
  padding: var(--space-xxl) 0;
  background-color: var(--light-gray);
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  border-radius: var(--radius-round);
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  top: 15px;
  z-index: 1;
}

.left {
  left: 0;
}

.right {
  left: 50%;
}

.left::after {
  right: -12.5px;
}

.right::after {
  left: -12.5px;
}

.timeline-content {
  padding: var(--space-lg);
  background-color: var(--light);
  position: relative;
  border-radius: var(--radius-large);
  box-shadow: var(--nm-shadow-light);
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 15px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
}

.left .timeline-content::before {
  right: -20px;
  border-left-color: var(--light);
}

.right .timeline-content::before {
  left: -20px;
  border-right-color: var(--light);
}

.date {
  display: inline-block;
  padding: 5px 15px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light);
  border-radius: var(--radius-round);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

/* Resources Section */
.resources-section {
  padding: var(--space-xxl) 0;
  background-color: var(--light);
}

.resource-card {
  padding: var(--space-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.resource-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.resource-list li {
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: 25px;
}

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

.resource-list a {
  color: var(--text-primary);
  transition: var(--transition-fast);
}

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

/* Contact Section */
.contact-section {
  position: relative;
  padding: var(--space-xxl) 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--light);
}

.contact-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

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

.contact-section .section-header h2, 
.contact-section .section-header p {
  color: var(--light);
}

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

.contact-info h3 {
  color: var(--light);
  margin-bottom: var(--space-md);
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.contact-info li i {
  margin-right: var(--space-sm);
  color: var(--accent);
}

.contact-form {
  background-color: rgba(255, 255, 255, 0.9);
  padding: var(--space-lg);
  border-radius: var(--radius-large);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-primary);
  background-color: var(--light);
  background-clip: padding-box;
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius-medium);
  transition: var(--transition-fast);
}

.form-control:focus {
  color: var(--text-primary);
  background-color: var(--light);
  border-color: var(--primary-light);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.25);
}

/* Webinars Section */
.webinars-section {
  padding: var(--space-xxl) 0;
  background-color: var(--light-gray);
}

.webinar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

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

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

.date-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-medium);
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.webinar-card .time {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.webinar-card .time i {
  margin-right: var(--space-xs);
}

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

.community-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

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

.community-section .section-header h2, 
.community-section .section-header p {
  color: var(--light);
}

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

.community-info h3 {
  color: var(--light);
  margin-bottom: var(--space-md);
}

.community-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.community-info li {
  margin-bottom: var(--space-sm);
  padding-left: 25px;
  position: relative;
}

.community-info li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.testimonials h3 {
  color: var(--light);
  margin-bottom: var(--space-lg);
}

.testimonial-item {
  background-color: rgba(255, 255, 255, 0.9);
  padding: var(--space-lg);
  border-radius: var(--radius-large);
  margin-bottom: var(--space-md);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-item p {
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.client-info {
  display: flex;
  align-items: center;
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: var(--space-md);
}

.client-details h4 {
  margin-bottom: 0;
  color: var(--text-primary);
}

.client-details p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

/* News Section */
.news-section {
  padding: var(--space-xxl) 0;
  background-color: var(--light);
}

.news-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

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

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

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

.news-card .btn-link {
  margin-top: auto;
}

/* Careers Section */
.careers-section {
  position: relative;
  padding: var(--space-xxl) 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--light);
}

.careers-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.careers-section .container {
  position: relative;
  z-index: 2;
}

.careers-section .section-header h2, 
.careers-section .section-header p {
  color: var(--light);
}

.careers-info h3, .open-positions h3 {
  color: var(--light);
  margin-bottom: var(--space-md);
}

.careers-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.careers-info li {
  margin-bottom: var(--space-sm);
  padding-left: 25px;
  position: relative;
}

.careers-info li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1;
}

.position-card {
  background-color: rgba(0, 0, 0, 0.3);
  padding: var(--space-lg);
  border-radius: var(--radius-large);
  margin-bottom: var(--space-md);
  border-left: 4px solid var(--accent);
  transition: var(--transition-medium);
}

.position-card:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.position-card h4 {
  color: var(--light);
  margin-bottom: var(--space-xs);
}

.position-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-md);
}

/* FAQ Section */
.faq-section {
  padding: var(--space-xxl) 0;
  background-color: var(--light-gray);
}

.accordion-item {
  border: none;
  margin-bottom: var(--space-md);
  border-radius: var(--radius-medium) !important;
  overflow: hidden;
  box-shadow: var(--nm-shadow-light);
}

.accordion-button {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  background-color: var(--light);
  border: none;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  background-color: rgba(0, 86, 179, 0.05);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-light);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230056b3' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  transition: var(--transition-fast);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230056b3' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.accordion-body {
  padding: 1rem 1.5rem 1.5rem;
  background-color: var(--light);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark), #1a1a2e);
  color: var(--light);
  padding: var(--space-xl) 0 0;
}

.footer h3 {
  color: var(--light);
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
  position: relative;
  display: inline-block;
}

.footer h3::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  bottom: -0.5rem;
  left: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: var(--radius-small);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-md);
}

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

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
  font-weight: 500;
}

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

.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-services a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.footer-links a:hover, .footer-services a:hover {
  color: var(--light);
  text-decoration: underline;
}

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

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

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

.footer-bottom p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-md);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--light);
  text-decoration: underline;
}

/* Parallax Effect */
.parallax-section {
  background-attachment: fixed;
}

/* Success Page */
.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-gray), var(--light));
}

.success-content {
  text-align: center;
  padding: var(--space-xl);
  max-width: 600px;
  background-color: var(--light);
  border-radius: var(--radius-large);
  box-shadow: var(--nm-shadow-light);
}

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

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

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

/* Privacy and Terms Pages */
.page-content {
  padding-top: 100px;
  padding-bottom: var(--space-xxl);
}

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

/* Responsive Styles */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--light);
    padding: var(--space-md);
    border-radius: var(--radius-medium);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-text {
    font-size: 1.25rem;
  }
  
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item::after {
    left: 18px;
  }
  
  .left::after, .right::after {
    left: 18px;
  }
  
  .left .timeline-content::before, .right .timeline-content::before {
    left: -20px;
    border-right-color: var(--light);
    border-left-color: transparent;
  }
  
  .right {
    left: 0;
  }
}

@media (max-width: 767.98px) {
  .section-header {
    margin-bottom: var(--space-lg);
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .contact-info {
    margin-bottom: var(--space-xl);
  }
  
  .footer-bottom .row {
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
    margin-top: var(--space-sm);
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-text {
    font-size: 1rem;
  }
  
  .card-content {
    padding: var(--space-md);
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.zoom-in {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.zoom-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, var(--primary-dark), var(--secondary-dark));
}