/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

:root {
  --primary: #1DB954;
  --primary-dark: #1ed760;
  --secondary: #191414;
  --accent: #1f2937;
  --text-primary: #ffffff;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --bg-primary: #000000;
  --bg-secondary: #111827;
  --bg-tertiary: #1f2937;
  --border: #374151;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --gradient-primary: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
  --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  overflow-x: hidden;
}

/* Ensure apply section container doesn't interfere */
section.apply-section .container {
  overflow-x: visible !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.5rem;
}

p {
  color: var(--text-secondary);
  font-size: 1.125rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

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

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

.btn-secondary {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

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

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

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

nav.scrolled {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}

.logo-img {
  height: 65px;
  width: auto;
  filter: brightness(1.2) contrast(1.1);
  transition: all 0.3s ease;
}

.logo-img:hover {
  filter: brightness(1.4) contrast(1.2);
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

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

.nav-cta .btn-primary {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.risk-free {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
}

.hero-image-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-image {
  max-width: 75%;
  height: auto;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  mix-blend-mode: soft-light;
  opacity: 0.85;
  filter: contrast(1.1) brightness(1.05);
}

.hero-stats-overlay {
  position: relative;
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  z-index: 3;
  width: 100%;
  justify-content: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.25rem 1.75rem;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  min-width: 110px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  line-height: 1;
}

.stat-number.animate {
  opacity: 1;
  transform: translateY(0);
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.2;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.gradient-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.circle-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.circle-2 {
  width: 300px;
  height: 300px;
  background: #667eea;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.circle-3 {
  width: 200px;
  height: 200px;
  background: #764ba2;
  bottom: 20%;
  left: 50%;
  animation-delay: 4s;
}

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

/* About Us Section */
.about-us {
  padding: 6rem 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

/* Stats Banner */
.stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 4rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.1) 0%, rgba(30, 215, 96, 0.05) 100%);
  border-radius: 1.5rem;
  border: 1px solid rgba(29, 185, 84, 0.2);
  backdrop-filter: blur(10px);
}

.stats-banner .stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: 1rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stats-banner .stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stats-banner .stat-item:hover::before {
  transform: scaleX(1);
}

.stats-banner .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.stats-banner .stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stats-banner .stat-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Features Section */
.features-section {
  margin: 6rem 0;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-header h2 {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.features-header p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item:hover {
  transform: translateX(10px);
}

.feature-item .feature-badge {
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(29, 185, 84, 0.15);
  flex-shrink: 0;
  position: relative;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.5px;
}

.feature-item:hover .feature-badge {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(29, 185, 84, 0.25);
}

.feature-item .feature-content {
  flex: 1;
}

.feature-item .feature-content h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.feature-item .feature-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
  max-width: 500px;
}

/* Success Story */
.success-story {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin: 4rem 0;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.15) 0%, rgba(30, 215, 96, 0.08) 100%);
  border-radius: 2rem;
  border: 1px solid rgba(29, 185, 84, 0.3);
  position: relative;
  overflow: hidden;
}

.success-story::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(29, 185, 84, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.story-content h3 {
  color: var(--text-primary);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.story-content p {
  color: var(--text-secondary);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
}

.story-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.125rem;
}

.author-genre {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.story-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}

.story-stat {
  text-align: center;
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.story-stat:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.story-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.story-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-bg .gradient-circle:nth-child(1) {
  top: 20%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.08) 0%, rgba(30, 215, 96, 0.04) 100%);
  animation: float 10s ease-in-out infinite;
}

.about-bg .gradient-circle:nth-child(2) {
  bottom: 20%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.04) 100%);
  animation: float 12s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(29, 185, 84, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(29, 185, 84, 0);
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  background: linear-gradient(145deg, var(--bg-tertiary) 0%, rgba(29, 185, 84, 0.05) 100%);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.75rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 40px rgba(29, 185, 84, 0.2);
  border-color: var(--primary);
  background: linear-gradient(145deg, var(--bg-tertiary) 0%, rgba(29, 185, 84, 0.1) 100%);
}

.service-card.featured {
  border-color: var(--primary);
  background: linear-gradient(145deg, var(--bg-tertiary) 0%, rgba(29, 185, 84, 0.15) 100%);
  box-shadow: 0 4px 30px rgba(29, 185, 84, 0.15);
  position: relative;
}





.service-card h3 {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.service-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.service-subtitle {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-weight: 500;
  opacity: 0.8;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
  text-align: left;
  flex-grow: 1;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(29, 185, 84, 0.3);
}

/* How It Works Section */
.how-it-works {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.step-item {
  text-align: center;
  padding: 2rem;
  background: var(--bg-tertiary);
  border-radius: 1rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 1.5rem;
}

.step-item h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.step-item p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.step-time {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
}

.step-image {
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.1) 0%, rgba(30, 215, 96, 0.1) 100%);
  padding: 1rem;
  transition: all 0.3s ease;
}

.step-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.05) 0%, rgba(30, 215, 96, 0.05) 100%);
  border-radius: 1rem;
  z-index: 1;
}

.step-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.step-item:hover .step-img {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.step-item:hover .step-image {
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.15) 0%, rgba(30, 215, 96, 0.15) 100%);
}

/* Responsive styles for step images */
@media (max-width: 768px) {
  .step-img {
    height: 150px;
  }
  
  .step-image {
    padding: 0.75rem;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .step-img {
    height: 120px;
  }
  
  .step-image {
    padding: 0.5rem;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.testimonials-carousel {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;  /* Chrome, Safari and Opera */
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 300%; /* 3 pages */
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonials-page {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 33.333%; /* Each page takes 1/3 of the track */
  flex-shrink: 0;
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.testimonials-page::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  transform: translateY(0);
}

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

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  color: #FFD700;
  font-size: 1.25rem;
  animation: starTwinkle 2s ease-in-out infinite;
}

.star:nth-child(2) { animation-delay: 0.2s; }
.star:nth-child(3) { animation-delay: 0.4s; }
.star:nth-child(4) { animation-delay: 0.6s; }
.star:nth-child(5) { animation-delay: 0.8s; }

@keyframes starTwinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-info h4 {
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.author-info span {
  color: var(--text-muted);
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.5rem;
}

.author-stats {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(var(--primary-rgb), 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  display: inline-block;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.carousel-btn {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-primary);
  transform: scale(1);
}

.carousel-btn:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.05);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: scale(1);
}

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

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: var(--gradient-primary);
  text-align: center;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

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

.cta-buttons .btn-outline {
  border-color: white;
  color: white;
}

.cta-buttons .btn-outline:hover {
  background: white;
  color: var(--primary);
}

/* Why Trust Us Section */
.why-trust-us {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.trust-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.comparison-card {
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.comparison-card.negative {
  background: linear-gradient(145deg, rgba(239, 68, 68, 0.05) 0%, rgba(239, 68, 68, 0.02) 100%);
  border-color: rgba(239, 68, 68, 0.2);
}

.comparison-card.positive {
  background: linear-gradient(145deg, rgba(29, 185, 84, 0.05) 0%, rgba(29, 185, 84, 0.02) 100%);
  border-color: rgba(29, 185, 84, 0.2);
}

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

.comparison-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.comparison-icon {
  font-size: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--bg-tertiary);
}

.comparison-card.negative .comparison-icon {
  background: rgba(239, 68, 68, 0.1);
}

.comparison-card.positive .comparison-icon {
  background: rgba(29, 185, 84, 0.1);
}

.comparison-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.comparison-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-features li {
  padding: 0.75rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-features li:last-child {
  border-bottom: none;
}

.comparison-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.comparison-card.negative .comparison-features li::before {
  background: #ef4444;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

.comparison-card.positive .comparison-features li::before {
  background: var(--primary);
  box-shadow: 0 0 10px rgba(29, 185, 84, 0.3);
}

.trust-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.trust-feature {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(145deg, var(--bg-tertiary) 0%, rgba(29, 185, 84, 0.03) 100%);
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.trust-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.trust-feature:hover::before {
  transform: scaleX(1);
}

.trust-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(29, 185, 84, 0.15);
  border-color: var(--primary);
  background: linear-gradient(145deg, var(--bg-tertiary) 0%, rgba(29, 185, 84, 0.08) 100%);
}

.trust-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(29, 185, 84, 0.2));
  transition: all 0.3s ease;
}

.trust-feature:hover .trust-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 12px 24px rgba(29, 185, 84, 0.3));
}

.trust-feature h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.trust-feature p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  font-size: 1.05rem;
}

/* FAQ Section */
.faq {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(29, 185, 84, 0.05);
}

.faq-question h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  flex: 1;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  transition: all 0.3s ease;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Legal Pages Styles */
.page-header {
  padding: 8rem 0 4rem 0;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.page-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin: 0;
}

.legal-content {
  padding: 4rem 0;
  background: var(--bg-primary);
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-tertiary);
  padding: 3rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.content-wrapper h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.content-wrapper h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 2.5rem 0 1rem 0;
  letter-spacing: -0.01em;
}

.content-wrapper h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 2rem 0 1rem 0;
}

.content-wrapper p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.content-wrapper ul,
.content-wrapper ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.content-wrapper li {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.content-wrapper strong {
  color: var(--text-primary);
  font-weight: 600;
}

.content-wrapper a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.content-wrapper a:hover {
  color: #00d4aa;
  text-decoration: underline;
}

.back-link {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.contact-info p {
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-tertiary);
  border-radius: 0.5rem;
  border: 1px solid var(--border);
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-method h4 {
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.contact-method p {
  color: var(--text-secondary);
  margin: 0;
}

.contact-form {
  background: var(--bg-tertiary);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--text-primary);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

/* Footer */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1rem;
}

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

.footer-section h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-section p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo .logo-img {
  height: 30px;
}

.footer-logo span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Payment Modal */
.payment-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
}

.payment-modal-content {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 1rem;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.payment-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.payment-modal-header h3 {
  margin: 0;
  color: var(--text-primary);
}

.close-modal {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-modal:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.payment-modal-body {
  padding: 1.5rem;
}

.package-summary {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.package-summary h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.package-summary p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.package-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

/* Stripe Elements Styling */
#payment-element {
  margin-bottom: 1.5rem;
}

/* Spinner */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  margin-left: 0.5rem;
}

.spinner.hidden {
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Notifications */
.notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 10001;
  max-width: 400px;
  animation: slideIn 0.3s ease-out;
}

.notification-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
}

.notification-success {
  background: var(--success);
  color: white;
}

.notification-error {
  background: var(--error);
  color: white;
}

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

.notification-close {
  background: none;
  border: none;
  color: inherit;
  font-size: 1.25rem;
  cursor: pointer;
  margin-left: 1rem;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: row;
    padding: 1rem;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: left 0.3s ease;
    z-index: 1000;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links a {
    font-size: 1.25rem;
    padding: 1rem 0;
  }
  
  .nav-cta {
    display: none;
  }
  
  .hamburger-menu {
    display: flex;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-image-container {
    order: -1;
  }
  
  .hero-image {
    max-width: 85%;
  }
  
  .hero-stats-overlay {
    margin-top: 1.5rem;
    gap: 1.25rem;
  }
  
  .stat-item {
    padding: 1rem 1.5rem;
    min-width: 90px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .trust-comparison {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .trust-features {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .trust-feature {
    padding: 2.5rem 1.5rem;
  }
  
  .trust-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
  }
  
  .trust-feature h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .trust-feature p {
    font-size: 1rem;
  }
  
  .testimonials-carousel {
    padding: 0 1rem;
  }
  
  .testimonials-page {
    grid-template-columns: repeat(2, 1fr); /* 2 boxes per page on tablet */
    gap: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .carousel-controls {
    margin-top: 2rem;
    gap: 1rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  
  .faq-question {
    padding: 1.25rem 1.5rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .faq-answer {
    padding: 0 1.5rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
  }
  
  .page-header {
    padding: 6rem 0 3rem 0;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .content-wrapper {
    padding: 2rem;
    margin: 0 1rem;
  }
  
  .content-wrapper h2 {
    font-size: 1.75rem;
  }
  
  .content-wrapper h3 {
    font-size: 1.25rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .service-price {
    font-size: 2rem;
  }
  
  .service-subtitle {
    font-size: 0.8rem;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-carousel {
    padding: 0 1rem;
  }
  
  .testimonials-page {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .carousel-controls {
    margin-top: 2rem;
    gap: 1rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  
  .payment-modal {
    padding: 0.5rem;
  }
  
  .payment-modal-content {
    max-height: 95vh;
  }
  
  .notification {
    top: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  
  .service-card {
    padding: 1.5rem;
    min-height: 380px;
    border-radius: 1.25rem;
  }
  
  .service-price {
    font-size: 2.25rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
    max-width: 100vw;
  }
  
  /* Stats Banner Mobile */
  .stats-banner {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1rem;
  }
  
  .stats-banner .stat-item {
    padding: 1rem;
  }
  
  .stats-banner .stat-number {
    font-size: 2rem;
  }
  
  /* Features Section Mobile */
  .features-section {
    margin: 3rem 0;
  }
  
  .features-header h2 {
    font-size: 2rem;
  }
  
  .features-header p {
    font-size: 1rem;
  }
  
  .features-list {
    gap: 2rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
  }
  
  .feature-item .feature-badge {
    align-self: center;
    min-width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .feature-item .feature-content h3 {
    font-size: 1.5rem;
  }
  
  .feature-item .feature-content p {
    font-size: 1rem;
  }
  
  /* Success Story Mobile */
  .success-story {
    margin: 2rem 0;
    padding: 1.5rem;
  }
  
  .story-content h3 {
    font-size: 1.25rem;
  }
  
  .story-content p {
    font-size: 0.875rem;
  }
  
  .story-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .story-stat {
    padding: 1.25rem;
  }
  
  .story-number {
    font-size: 1.75rem;
  }
  
  .nav-container {
    padding: 0.75rem 1rem;
  }
  
  .logo-img {
    height: 50px;
  }
  
  .hero {
    padding: 6rem 0 2rem 0;
    min-height: 90vh;
  }
  
  .hero-container {
    padding: 0 1rem;
    gap: 2rem;
    margin-top: 1rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-image-container {
    order: 1;
  }
  
  .hero-image {
    max-width: 95%;
  }
  
  .hero-stats-overlay {
    margin-top: 1rem;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .stat-item {
    padding: 0.875rem 1.25rem;
    min-width: 70px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .services,
  .how-it-works,
  .testimonials,
  .cta-section,
  .contact {
    padding: 3rem 0;
  }
  
  /* Stats Banner Responsive */
  .stats-banner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
    padding: 1.5rem;
  }
  
  .stats-banner .stat-item {
    padding: 1.25rem;
  }
  
  .stats-banner .stat-number {
    font-size: 2.5rem;
  }
  
  .stats-banner .stat-label {
    font-size: 0.75rem;
  }
  
  /* Features Section Responsive */
  .features-section {
    margin: 4rem 0;
  }
  
  .features-header h2 {
    font-size: 2.5rem;
  }
  
  .features-list {
    gap: 2.5rem;
  }
  
  .feature-item {
    gap: 1.5rem;
    padding: 1.5rem 0;
  }
  
  .feature-item .feature-badge {
    min-width: 50px;
    height: 50px;
    font-size: 1.05rem;
  }
  
  .feature-item .feature-content h3 {
    font-size: 1.5rem;
  }
  
  .feature-item .feature-content p {
    font-size: 1rem;
  }
  
  /* Success Story Responsive */
  .success-story {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
  }
  
  .story-content h3 {
    font-size: 1.5rem;
  }
  
  .story-content p {
    font-size: 1rem;
  }
  
  .story-stats {
    flex-direction: row;
    gap: 1rem;
  }
  
  .story-stat {
    padding: 1.5rem;
  }
  
  .story-number {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0;
  }
  
  .service-card {
    padding: 1.25rem;
    min-height: auto;
    margin: 0;
    border-radius: 1rem;
  }
  

  
  .service-price {
    font-size: 1.75rem;
  }
  
  .service-subtitle {
    font-size: 0.75rem;
  }
  
  .service-features li {
    font-size: 0.875rem;
    padding: 0.375rem 0;
    padding-left: 2rem;
  }
  
  .steps-grid {
    gap: 1rem;
  }
  
  .step-item {
    padding: 1.5rem;
  }
  
  .testimonials-carousel {
    padding: 0 0.5rem;
  }
  
  .testimonials-page {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-stars {
    gap: 0.125rem;
  }
  
  .star {
    font-size: 1rem;
  }
  
  .carousel-controls {
    margin-top: 1.5rem;
    gap: 0.75rem;
  }
  
  .carousel-btn {
    width: 36px;
    height: 36px;
  }
  
  .carousel-dots {
    gap: 0.25rem;
  }
  
  .dot {
    width: 8px;
    height: 8px;
  }
  
  .contact-content {
    gap: 2rem;
  }
  
  .contact-methods {
    gap: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .payment-modal-header,
  .payment-modal-body {
    padding: 1rem;
  }
}

/* Connect Section Styles */
.connect {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  overflow: hidden;
}

.connect-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.connect-text {
  max-width: 800px;
}

.connect-text h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.connect-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.connect-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.connect-feature {
  padding: 0.75rem 1.5rem;
  background: rgba(29, 185, 84, 0.1);
  border: 1px solid rgba(29, 185, 84, 0.2);
  border-radius: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.connect-feature:hover {
  background: rgba(29, 185, 84, 0.2);
  border-color: rgba(29, 185, 84, 0.4);
  transform: translateY(-2px);
}

.connect-feature span {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.connect-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.connect-logo-img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(29, 185, 84, 0.3));
  animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 10px 20px rgba(29, 185, 84, 0.3));
  }
  100% {
    filter: drop-shadow(0 15px 30px rgba(29, 185, 84, 0.6));
  }
}

.connect-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.connect-cta .btn-primary {
  font-size: 1.125rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 8px 25px rgba(29, 185, 84, 0.3);
  transition: all 0.3s ease;
}

.connect-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(29, 185, 84, 0.4);
}

.connect-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}

.connect-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.connect-gradient {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(29, 185, 84, 0.1) 0%, transparent 70%);
  animation: gradientFloat 8s ease-in-out infinite;
}

.connect-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(29, 185, 84, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(29, 185, 84, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(29, 185, 84, 0.1) 1px, transparent 1px);
  background-size: 100px 100px, 150px 150px, 80px 80px;
  animation: particleFloat 12s linear infinite;
}

@keyframes gradientFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100px);
  }
}

/* Responsive Connect Section */
@media (max-width: 768px) {
  .connect {
    padding: 4rem 0;
  }
  
  .connect-content {
    gap: 2rem;
  }
  
  .connect-text {
    max-width: 100%;
  }
  
  .connect-logo-img {
    width: 80px;
  }
  
  .connect-features {
    gap: 1rem;
  }
  
  .connect-feature {
    padding: 0.5rem 1rem;
  }
  
  .connect-feature span {
    font-size: 0.8rem;
  }
  
  .connect-cta {
    align-items: center;
  }
  
  .connect-gradient {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
  }
  
  .testimonials-carousel {
    padding: 0 0.5rem;
  }
  
  .testimonials-page {
    grid-template-columns: 1fr; /* 1 box per page on mobile */
    gap: 1rem;
  }
  
  .testimonial-card {
    min-width: 250px;
    padding: 1.25rem;
  }
  
  .testimonial-stars {
    gap: 0.125rem;
  }
  
  .star {
    font-size: 1rem;
  }
  
  .carousel-controls {
    margin-top: 1.5rem;
    gap: 0.75rem;
  }
  
  .carousel-btn {
    width: 36px;
    height: 36px;
  }
  
  .carousel-dots {
    gap: 0.25rem;
  }
  
  .dot {
    width: 8px;
    height: 8px;
  }
}

/* Scroll Animations */
.scroll-animate {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.animate {
  opacity: 1;
}

/* Fade In Animation */
.fade-in {
  opacity: 0;
  transform: translateY(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Slide Up Animation */
.slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-up.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Slide Down Animation */
.slide-down {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-down.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Slide Left Animation */
.slide-left {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Slide Right Animation */
.slide-right {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Scale Up Animation */
.scale-up {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scale-up.animate {
  opacity: 1;
  transform: scale(1);
}

/* Fade In with Scale */
.fade-scale {
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-scale.animate {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Override fade-scale for apply-content to maintain grid layout */
.apply-content.fade-scale {
  display: grid !important;
  opacity: 1 !important;
  transform: none !important;
}

.apply-content.fade-scale.animate {
  display: grid !important;
  opacity: 1 !important;
  transform: none !important;
}

/* Rotate In Animation */
.rotate-in {
  opacity: 0;
  transform: rotate(-10deg) scale(0.9);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.rotate-in.animate {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Stagger Animation Delays */
.animate-delay-1 {
  transition-delay: 0.1s;
}

.animate-delay-2 {
  transition-delay: 0.2s;
}

.animate-delay-3 {
  transition-delay: 0.3s;
}

.animate-delay-4 {
  transition-delay: 0.4s;
}

.animate-delay-5 {
  transition-delay: 0.5s;
}

.animate-delay-6 {
  transition-delay: 0.6s;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .scroll-animate,
  .fade-in,
  .slide-up,
  .slide-down,
  .slide-left,
  .slide-right,
  .scale-up,
  .fade-scale,
  .rotate-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Apply Section Styles */
section.apply-section {
  padding: 6rem 0 !important;
  background: var(--bg-primary) !important;
  position: relative !important;
  overflow: visible !important;
  width: 100% !important;
  display: block !important;
}

section.apply-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

section.apply-section .section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-weight: 700;
}

section.apply-section .section-header p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

section.apply-section .container .apply-content,
.apply-section .container .apply-content,
section.apply-section .apply-content,
.apply-content {
  display: grid !important;
  grid-template-columns: 1.2fr 0.8fr !important;
  gap: 4rem !important;
  margin-top: 3rem !important;
  margin-bottom: 0 !important;
  align-items: start !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  position: relative !important;
}

section.apply-section .container,
.apply-section .container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 1.5rem !important;
  width: 100% !important;
  box-sizing: border-box !important;
  display: block !important;
}

section.apply-section .container .apply-content,
.apply-section .container .apply-content {
  display: grid !important;
  grid-template-columns: 1.2fr 0.8fr !important;
  gap: 4rem !important;
  margin-top: 3rem !important;
  align-items: start !important;
  width: 100% !important;
}

section.apply-section .apply-content .apply-info {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

section.apply-section .apply-content .apply-cta {
  width: 100% !important;
  position: sticky !important;
  top: 2rem !important;
  box-sizing: border-box !important;
}

.apply-info h3 {
  font-size: 2.25rem !important;
  margin-bottom: 1.25rem !important;
  color: var(--text-primary) !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.5px !important;
}

.apply-info > p {
  font-size: 1.125rem !important;
  color: var(--text-secondary) !important;
  margin-bottom: 3rem !important;
  line-height: 1.8 !important;
  max-width: 100% !important;
}

section.apply-section .apply-benefits,
.apply-section .apply-benefits,
.apply-benefits {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1.5rem !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.benefit-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 1.5rem !important;
  padding: 2rem !important;
  background: var(--bg-secondary) !important;
  border-radius: 1rem !important;
  border: 1px solid var(--border) !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.benefit-item:hover::before {
  transform: scaleY(1);
}

.benefit-item:hover {
  transform: translateY(-4px) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 8px 24px rgba(29, 185, 84, 0.2) !important;
  background: linear-gradient(145deg, var(--bg-secondary) 0%, rgba(29, 185, 84, 0.05) 100%) !important;
}

.benefit-icon {
  flex-shrink: 0 !important;
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.15) 0%, rgba(29, 185, 84, 0.08) 100%) !important;
  border-radius: 12px !important;
  border: 1px solid rgba(29, 185, 84, 0.3) !important;
  color: var(--primary) !important;
  transition: all 0.3s ease !important;
}

.benefit-item:hover .benefit-icon {
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.25) 0%, rgba(29, 185, 84, 0.15) 100%);
  border-color: var(--primary);
  transform: scale(1.05);
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
}

.benefit-text {
  flex: 1 !important;
  min-width: 0 !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
}

.benefit-text h4 {
  font-size: 1.25rem !important;
  margin-bottom: 0.75rem !important;
  margin-top: 0 !important;
  color: var(--text-primary) !important;
  font-weight: 600 !important;
  letter-spacing: -0.3px !important;
  line-height: 1.4 !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
}

.benefit-text p {
  font-size: 0.95rem !important;
  color: var(--text-secondary) !important;
  margin: 0 !important;
  line-height: 1.7 !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  word-wrap: break-word !important;
}

.apply-cta {
  position: sticky;
  top: 2rem;
}

section.apply-section .apply-card,
.apply-section .apply-card,
.apply-cta .apply-card,
.apply-card {
  background: linear-gradient(145deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%) !important;
  border-radius: 1.5rem !important;
  padding: 3rem !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  display: block !important;
  margin: 0 !important;
}

.apply-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--primary);
}

.apply-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.apply-card h3 {
  font-size: 2rem !important;
  margin-bottom: 1rem !important;
  margin-top: 0 !important;
  color: var(--text-primary) !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
}

.apply-card > p {
  font-size: 1.125rem !important;
  color: var(--text-secondary) !important;
  margin-bottom: 2rem !important;
  margin-top: 0 !important;
  line-height: 1.6 !important;
}

.apply-card .btn-primary {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.apply-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  font-style: italic;
}

/* Responsive Apply Section */
@media (max-width: 968px) {
  section.apply-section .apply-content,
  .apply-section .apply-content,
  .apply-content {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    gap: 3rem !important;
  }
  
  section.apply-section .apply-info {
    order: 1 !important;
    width: 100% !important;
  }
  
  section.apply-section .apply-cta,
  .apply-section .apply-cta,
  .apply-cta {
    position: static !important;
    width: 100% !important;
    top: auto !important;
    order: 2 !important;
  }
  
  section.apply-section .apply-card,
  .apply-section .apply-card,
  .apply-card {
    padding: 2.5rem 2rem !important;
  }

  section.apply-section {
    padding: 4rem 0 !important;
  }
}

@media (max-width: 768px) {
  section.apply-section {
    padding: 3rem 0 !important;
    overflow-x: hidden !important;
  }
  
  section.apply-section .container {
    padding: 0 1rem !important;
    max-width: 100% !important;
  }
  
  section.apply-section .section-header {
    margin-bottom: 2rem !important;
  }
  
  section.apply-section .section-header h2 {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.2 !important;
  }
  
  section.apply-section .section-header p {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    padding: 0 !important;
  }
  
  section.apply-section .apply-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    margin-top: 2rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  section.apply-section .apply-info {
    width: 100% !important;
    max-width: 100% !important;
    order: 1 !important;
  }
  
  section.apply-section .apply-info h3 {
    font-size: clamp(1.5rem, 5vw, 1.75rem) !important;
    margin-bottom: 1rem !important;
    line-height: 1.2 !important;
  }
  
  section.apply-section .apply-info > p {
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
    line-height: 1.6 !important;
  }
  
  section.apply-section .apply-benefits {
    gap: 1rem !important;
    width: 100% !important;
  }
  
  section.apply-section .benefit-item {
    flex-direction: row !important;
    text-align: left !important;
    align-items: flex-start !important;
    padding: 1.25rem !important;
    gap: 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
  }
  
  section.apply-section .benefit-item * {
    white-space: normal !important;
  }
  
  section.apply-section .benefit-icon {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    flex-shrink: 0 !important;
  }
  
  section.apply-section .benefit-icon svg {
    width: 20px !important;
    height: 20px !important;
  }
  
  section.apply-section .benefit-text h4 {
    font-size: 1.1rem !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.3 !important;
  }
  
  section.apply-section .benefit-text {
    flex: 1 !important;
    min-width: 0 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
  
  section.apply-section .benefit-text p {
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }
  
  section.apply-section .apply-cta {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    top: auto !important;
    margin-top: 0 !important;
    order: 2 !important;
  }
  
  section.apply-section .apply-info {
    order: 1 !important;
  }
  
  section.apply-section .apply-card {
    padding: 2rem 1.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  section.apply-section .apply-card h3 {
    font-size: clamp(1.5rem, 5vw, 1.75rem) !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.2 !important;
  }
  
  section.apply-section .apply-card > p {
    font-size: 1rem !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.5 !important;
  }
  
  section.apply-section .apply-card .btn-primary {
    padding: 0.875rem 1.5rem !important;
    font-size: 1rem !important;
    margin-bottom: 1rem !important;
    width: 100% !important;
  }
  
  section.apply-section .apply-note {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
  }
}

@media (max-width: 480px) {
  section.apply-section {
    padding: 2.5rem 0 !important;
  }
  
  section.apply-section .container {
    padding: 0 0.75rem !important;
  }
  
  section.apply-section .section-header {
    margin-bottom: 1.5rem !important;
  }
  
  section.apply-section .section-header h2 {
    font-size: 1.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  section.apply-section .section-header p {
    font-size: 0.9rem !important;
  }
  
  section.apply-section .apply-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    margin-top: 1.5rem !important;
  }
  
  section.apply-section .apply-info {
    order: 1 !important;
  }
  
  section.apply-section .apply-cta {
    order: 2 !important;
  }
  
  section.apply-section .apply-info h3 {
    font-size: 1.375rem !important;
    margin-bottom: 0.875rem !important;
  }
  
  section.apply-section .apply-info > p {
    font-size: 0.9375rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  section.apply-section .apply-benefits {
    gap: 0.875rem !important;
  }
  
  section.apply-section .benefit-item {
    padding: 1rem !important;
    gap: 0.875rem !important;
    border-radius: 0.75rem !important;
    overflow: visible !important;
  }
  
  section.apply-section .benefit-item * {
    white-space: normal !important;
  }
  
  section.apply-section .benefit-icon {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    border-radius: 10px !important;
  }
  
  section.apply-section .benefit-icon svg {
    width: 18px !important;
    height: 18px !important;
  }
  
  section.apply-section .benefit-text h4 {
    font-size: 1rem !important;
    margin-bottom: 0.375rem !important;
  }
  
  section.apply-section .benefit-text {
    flex: 1 !important;
    min-width: 0 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
  
  section.apply-section .benefit-text p {
    font-size: 0.8125rem !important;
    line-height: 1.4 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }
  
  section.apply-section .apply-card {
    padding: 1.5rem 1.25rem !important;
    border-radius: 1.25rem !important;
  }
  
  section.apply-section .apply-card h3 {
    font-size: 1.375rem !important;
    margin-bottom: 0.625rem !important;
  }
  
  section.apply-section .apply-card > p {
    font-size: 0.9375rem !important;
    margin-bottom: 1.25rem !important;
  }
  
  section.apply-section .apply-card .btn-primary {
    padding: 0.875rem 1.25rem !important;
    font-size: 0.9375rem !important;
    margin-bottom: 0.875rem !important;
  }
  
  section.apply-section .apply-note {
    font-size: 0.75rem !important;
  }
} 