:root {
  /* Brutal design system */
  --color-primary: #ff3e00;
  --color-primary-dark: #d63600;
  --color-primary-light: #ff704d;
  --color-secondary: #0066ff;
  --color-secondary-dark: #0052cc;
  --color-secondary-light: #4d94ff;
  --color-tertiary: #ffd500;
  --color-dark: #1a1a1a;
  --color-light: #f8f9fa;
  --color-gray: #6c757d;
  --color-gray-light: #e9ecef;
  --color-success: #28a745;
  --color-info: #17a2b8;
  --color-warning: #ffc107;
  --color-danger: #dc3545;
  
  /* Typography */
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Nunito', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  
  /* Borders */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  
  /* Animations */
  --transition-fast: 0.2s;
  --transition-medium: 0.4s;
  --transition-slow: 0.8s;
}

/* Base Styles */
body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: var(--color-light);
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

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

h1 {
  font-size: 3.5rem;
  text-transform: uppercase;
}

h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: var(--spacing-sm);
}

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

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

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

.section-title {
  position: relative;
  margin-bottom: var(--spacing-lg);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--color-primary);
}

/* Button Styles - Global */
.btn, 
button, 
input[type='submit'] {
  position: relative;
  font-family: var(--font-heading);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.75rem 1.5rem;
  border: 3px solid transparent;
  border-radius: 0;
  overflow: hidden;
  transition: all var(--transition-medium);
  z-index: 1;
}

.btn:before, 
button:before, 
input[type='submit']:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform var(--transition-medium) cubic-bezier(0.65, 0.05, 0.36, 1);
  z-index: -1;
}

.btn:hover:before, 
button:hover:before, 
input[type='submit']:hover:before {
  transform: translateX(0);
}

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

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 62, 0, 0.3);
}

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

.btn-secondary:hover {
  background-color: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

.btn-outline-light {
  color: white;
  border-color: white;
  background-color: transparent;
}

.btn-outline-light:hover {
  color: var(--color-dark);
  background-color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

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

.btn-outline-primary:hover {
  color: white;
  background-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 62, 0, 0.3);
}

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

/* Header / Navbar */
.header-brutal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-dark);
  padding: 1.5rem 0;
  z-index: 1000;
  transition: all var(--transition-medium);
}

.header-brutal.scrolled {
  padding: 0.75rem 0;
  background-color: rgba(26, 26, 26, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary) !important;
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.navbar-brand:hover {
  color: var(--color-primary-light) !important;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  background-color: transparent;
}

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

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

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  color: white !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 3px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transition: transform var(--transition-medium) cubic-bezier(0.65, 0.05, 0.36, 1);
}

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

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

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  overflow: hidden;
}

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

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

.hero-section h1 {
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
  letter-spacing: 3px;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
  animation: slideInUp 1s ease-out;
}

.hero-section .lead {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: var(--spacing-lg);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
  animation: slideInUp 1s ease-out 0.2s;
  animation-fill-mode: both;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  animation: slideInUp 1s ease-out 0.4s;
  animation-fill-mode: both;
}

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

/* Statistics Section */
.statistics-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-light);
  position: relative;
  overflow: hidden;
}

.statistics-section:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 62, 0, 0.05) 0%, rgba(0, 102, 255, 0.05) 100%);
  z-index: 0;
}

.stats-row {
  position: relative;
  z-index: 1;
}

.stat-box {
  text-align: center;
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  border: 3px solid var(--color-dark);
  background-color: white;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(26, 26, 26, 0.2);
}

.stat-box:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--color-primary);
  transform: translateX(-100%);
  transition: transform var(--transition-medium) cubic-bezier(0.65, 0.05, 0.36, 1);
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 12px 12px 0 rgba(26, 26, 26, 0.3);
}

.stat-box:hover:before {
  transform: translateX(0);
}

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

.stat-description {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.progress-container {
  height: 4px;
  background-color: var(--color-gray-light);
  margin-top: var(--spacing-sm);
}

.progress-bar {
  height: 100%;
  background-color: var(--color-secondary);
  transition: width 1.5s cubic-bezier(0.65, 0.05, 0.36, 1);
}

/* Our Process Section */
.our-process-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-light);
  position: relative;
}

.our-process-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.05) 0%, rgba(26, 26, 26, 0) 100%);
}

.asymmetric-row {
  margin-top: var(--spacing-lg);
}

.process-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
  transition: all var(--transition-medium);
}

.process-card[data-index]:before {
  content: attr(data-index);
  position: absolute;
  top: -30px;
  left: -20px;
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 700;
  color: rgba(26, 26, 26, 0.05);
  line-height: 1;
  z-index: -1;
  transition: all var(--transition-medium);
}

.process-card:hover:before {
  color: rgba(255, 62, 0, 0.1);
  transform: scale(1.1);
}

.card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-bottom: var(--spacing-md);
  border: 3px solid var(--color-dark);
  box-shadow: 8px 8px 0 rgba(26, 26, 26, 0.2);
  transition: all var(--transition-medium);
}

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

.process-card:hover .card-image {
  transform: translateY(-10px);
  box-shadow: 12px 12px 0 rgba(26, 26, 26, 0.3);
}

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

.card-content {
  text-align: center;
  padding: 0 var(--spacing-sm);
}

.card-content h3 {
  font-size: 1.75rem;
  color: var(--color-dark);
  margin-bottom: var(--spacing-sm);
  position: relative;
  padding-bottom: var(--spacing-xs);
}

.card-content h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--color-primary);
}

.card-content p {
  font-size: 1rem;
  color: var(--color-gray);
}

/* Awards Section */
.awards-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.awards-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 62, 0, 0.2) 0%, rgba(26, 26, 26, 0) 60%);
  z-index: 0;
}

.awards-section .section-title:after {
  background-color: var(--color-tertiary);
}

.awards-row {
  position: relative;
  z-index: 1;
}

.award-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--spacing-lg) var(--spacing-md);
  margin-bottom: var(--spacing-md);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  backdrop-filter: blur(10px);
  transition: all var(--transition-medium);
}

.award-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.award-icon {
  width: 150px;
  height: 150px;
  margin-bottom: var(--spacing-md);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--color-tertiary);
  padding: 5px;
  transition: all var(--transition-medium);
}

.award-card:hover .award-icon img {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 30px rgba(255, 213, 0, 0.5);
}

.award-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-tertiary);
}

.award-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Resources Section */
.resources-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-light);
  position: relative;
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: center;
}

.resource-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--spacing-md);
  background-color: white;
  border: 3px solid var(--color-dark);
  border-radius: var(--border-radius-sm);
  box-shadow: 8px 8px 0 rgba(26, 26, 26, 0.2);
  transition: all var(--transition-medium);
  height: 100%;
}

.resource-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 12px 12px 0 rgba(26, 26, 26, 0.3);
}

.resource-icon {
  width: 200px;
  height: 150px;
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  border-radius: var(--border-radius-sm);
}

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

.resource-card:hover .resource-icon img {
  transform: scale(1.1);
}

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

.resource-card p {
  font-size: 1rem;
  color: var(--color-gray);
  margin-bottom: var(--spacing-md);
}

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

/* Customer Stories Section */
.customer-stories-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-light);
  position: relative;
}

.customer-stories-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.05) 0%, rgba(26, 26, 26, 0) 100%);
}

.testimonials-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: center;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--spacing-md);
  background-color: white;
  border: 3px solid var(--color-dark);
  border-radius: var(--border-radius-sm);
  box-shadow: 8px 8px 0 rgba(26, 26, 26, 0.2);
  transition: all var(--transition-medium);
  height: 100%;
  position: relative;
}

.testimonial-card:before {
  content: '"';
  position: absolute;
  top: -30px;
  left: 20px;
  font-family: Georgia, serif;
  font-size: 6rem;
  color: var(--color-primary);
  line-height: 1;
  opacity: 0.2;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 12px 12px 0 rgba(26, 26, 26, 0.3);
}

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

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform var(--transition-medium);
}

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

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

.client-position {
  font-size: 0.875rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--color-gray);
  font-style: italic;
}

/* Webinars Section */
.webinars-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-dark);
  color: white;
  position: relative;
}

.webinars-section .section-title:after {
  background-color: var(--color-secondary);
}

.webinars-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  justify-content: center;
  margin-top: var(--spacing-lg);
}

.webinar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  color: var(--color-dark);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-medium);
}

.webinar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

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

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

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

.webinar-content {
  padding: var(--spacing-md);
  text-align: center;
}

.webinar-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xs);
  color: var(--color-dark);
}

.webinar-date {
  font-size: 0.875rem;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

.webinar-desc {
  font-size: 1rem;
  color: var(--color-gray);
  margin-bottom: var(--spacing-md);
}

/* Contact Section */
.contact-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-light);
  position: relative;
}

.contact-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 62, 0, 0.05) 0%, rgba(0, 102, 255, 0.05) 100%);
  z-index: 0;
}

.contact-intro {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-lg);
}

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

.info-item {
  margin-bottom: var(--spacing-md);
}

.info-item h4 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xs);
  color: var(--color-primary);
}

.info-item p {
  font-size: 1rem;
  color: var(--color-gray);
}

.contact-form-container {
  background-color: white;
  padding: var(--spacing-lg);
  border: 3px solid var(--color-dark);
  box-shadow: 8px 8px 0 rgba(26, 26, 26, 0.2);
  transition: all var(--transition-medium);
}

.contact-form-container:hover {
  transform: translateY(-10px);
  box-shadow: 12px 12px 0 rgba(26, 26, 26, 0.3);
}

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

.contact-form .form-control {
  border: 2px solid var(--color-gray-light);
  border-radius: var(--border-radius-sm);
  padding: 0.75rem;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

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

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

.footer-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-primary);
  position: relative;
  padding-bottom: var(--spacing-xs);
}

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

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-primary);
  transform: translateX(5px);
  display: inline-block;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.social-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-family: var(--font-heading);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius-sm);
  background-color: rgba(255, 255, 255, 0.1);
}

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

.newsletter h4 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  color: white;
}

.newsletter-form .input-group {
  position: relative;
}

.newsletter-form .form-control {
  border: 2px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
  padding: 0.75rem;
  height: auto;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.copyright-row {
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.success-container {
  max-width: 600px;
  padding: var(--spacing-lg);
  background-color: white;
  border: 3px solid var(--color-dark);
  box-shadow: 8px 8px 0 rgba(26, 26, 26, 0.2);
}

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

.success-title {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
}

.success-message {
  font-size: 1.25rem;
  color: var(--color-gray);
  margin-bottom: var(--spacing-md);
}

/* Privacy & Terms Pages */
.privacy-page, .terms-page {
  padding-top: 100px;
  padding-bottom: var(--spacing-xl);
}

.privacy-content, .terms-content {
  background-color: white;
  padding: var(--spacing-lg);
  border: 3px solid var(--color-dark);
  box-shadow: 8px 8px 0 rgba(26, 26, 26, 0.2);
}

/* Modal Styling */
.modal-content {
  border: 3px solid var(--color-dark);
  border-radius: var(--border-radius-sm);
  box-shadow: 8px 8px 0 rgba(26, 26, 26, 0.2);
}

.modal-header {
  background-color: var(--color-primary);
  color: white;
  border-bottom: 3px solid var(--color-dark);
}

.modal-title {
  font-family: var(--font-heading);
  font-weight: 700;
}

.btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  .hero-section h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 991.98px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero-section h1 {
    font-size: 3rem;
  }
  
  .hero-section .lead {
    font-size: 1.25rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    margin-bottom: var(--spacing-sm);
    width: 100%;
  }
  
  .navbar-collapse {
    background-color: var(--color-dark);
    padding: 1rem;
    border-radius: var(--border-radius-sm);
  }
  
  .nav-link {
    text-align: center;
    margin: 0.5rem 0;
  }
  
  .nav-link:after {
    left: 30%;
    right: 30%;
  }
  
  .process-card[data-index]:before {
    font-size: 6rem;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section .lead {
    font-size: 1.1rem;
  }
  
  .stat-box {
    margin-bottom: var(--spacing-md);
  }
  
  .awards-section .award-card, 
  .customer-stories-section .testimonial-card {
    margin-bottom: var(--spacing-md);
  }
  
  .webinars-row .webinar-card {
    margin-bottom: var(--spacing-md);
  }
  
  .contact-form-container {
    margin-top: var(--spacing-lg);
  }
  
  .footer-section [class^="col-"] {
    margin-bottom: var(--spacing-lg);
  }
  
  .process-card[data-index]:before {
    font-size: 5rem;
    top: -20px;
    left: -10px;
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 1.75rem;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .process-card[data-index]:before {
    font-size: 4rem;
    top: -15px;
    left: -5px;
  }
}

/* Cookie Consent Styling */
#cookieConsent {
  background-color: rgba(26, 26, 26, 0.95) !important;
  border-top: 3px solid var(--color-primary);
}

#acceptCookies {
  background-color: var(--color-primary) !important;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
}

#acceptCookies:hover {
  background-color: var(--color-primary-dark) !important;
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(255, 62, 0, 0.3);
}

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

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

.fade-in {
  animation: fadeIn 1s ease-out;
}

.slide-up {
  animation: slideUp 1s ease-out;
}

/* Utility Classes */
.text-primary {
  color: var(--color-primary) !important;
}

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

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

.bg-secondary {
  background-color: var(--color-secondary) !important;
}

.mb-xs { margin-bottom: var(--spacing-xs) !important; }
.mb-sm { margin-bottom: var(--spacing-sm) !important; }
.mb-md { margin-bottom: var(--spacing-md) !important; }
.mb-lg { margin-bottom: var(--spacing-lg) !important; }
.mb-xl { margin-bottom: var(--spacing-xl) !important; }

.mt-xs { margin-top: var(--spacing-xs) !important; }
.mt-sm { margin-top: var(--spacing-sm) !important; }
.mt-md { margin-top: var(--spacing-md) !important; }
.mt-lg { margin-top: var(--spacing-lg) !important; }
.mt-xl { margin-top: var(--spacing-xl) !important; }