@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-navy: #090d1a;       /* Rich Midnight Navy */
  --primary-navy-light: #121829; /* Deep Slate Blue */
  --accent-blue: #3b82f6;        /* Bright Dodger Blue */
  --accent-blue-hover: #2563eb;  /* Deep Royal Blue */
  --accent-blue-light: #f0f7ff;  /* Soft Ice Blue */
  --accent-teal: #14b8a6;        /* Teal for trust signals */
  --accent-gold: #f59e0b;        /* Gold/Orange highlight accent */
  --text-dark: #334155;          /* Slate 700 */
  --text-muted: #64748b;         /* Slate 500 */
  --white: #ffffff;
  --bg-light: #f8fafc;           /* Slate 50 */
  --border-color: #e2e8f0;       /* Slate 200 */
  --error-color: #ef4444;        /* Red 500 */
  --success-color: #10b981;      /* Green 500 */
  
  --font-family: 'Outfit', sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 6px -1px rgba(9, 13, 26, 0.03), 0 2px 4px -1px rgba(9, 13, 26, 0.02);
  --shadow-md: 0 12px 30px -10px rgba(9, 13, 26, 0.08);
  --shadow-lg: 0 25px 50px -12px rgba(9, 13, 26, 0.12);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  --border-radius: 16px;
  --border-radius-lg: 24px;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
  scroll-padding-top: 85px;
}

body {
  font-family: var(--font-family);
  background-color: var(--white);
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary-navy);
  font-weight: 700;
  letter-spacing: -0.025em;
}

/* Header Top Disclaimer Banner */
.top-disclaimer-banner {
  background-color: #f1f5f9;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
  text-align: center;
  padding: 8px 16px;
  line-height: 1.4;
  position: relative;
  z-index: 1040;
}

/* Top Bar Styling */
.top-bar {
  background-color: var(--primary-navy);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.top-bar-item i {
  color: var(--accent-blue);
  font-size: 1.1rem;
}

/* Header & Sticky Navbar */
.navbar-custom {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  padding: 18px 0;
  transition: var(--transition);
}

.navbar-custom.scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
  background-color: rgba(255, 255, 255, 0.98);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: var(--transition);
}

.navbar-custom.scrolled .brand-logo {
  transform: scale(0.96);
}

.brand-logo-img,
.brand-logo img {
  height: 58px;
  max-height: 58px;
  width: auto;
  display: block;
  transition: var(--transition);
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1.1;
  transition: var(--transition);
}

.brand-logo-title-row {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
}

.brand-logo-mva {
  font-weight: 800; /* Extra Bold */
}

.navbar-light .brand-logo-mva {
  color: var(--primary-navy);
}

.footer-section .brand-logo-mva {
  color: var(--white);
}

.brand-logo-quote {
  font-weight: 300; /* Light */
  margin-left: 6px;
}

.navbar-light .brand-logo-quote {
  color: var(--primary-navy);
}

.footer-section .brand-logo-quote {
  color: var(--white);
  opacity: 0.95;
}

.brand-logo-underline {
  height: 3px;
  width: 42px; /* aligns under MVA */
  margin-top: 1px;
  background-color: #2563eb; /* Accent blue */
  border-radius: 1.5px;
  transition: var(--transition);
}

.footer-section .brand-logo-underline {
  background-color: var(--white); /* White accent in footer for contrast */
}

@media (max-width: 575.98px) {
  .brand-logo-img,
  .brand-logo img {
    height: 44px;
    max-height: 44px;
  }
  .brand-logo-title-row {
    font-size: 20px;
  }
  .brand-logo-underline {
    height: 2px;
    width: 32px;
    margin-top: 0;
  }
  .brand-logo {
    gap: 8px;
  }
}

/* Custom Nav Links in Navbar */
.nav-link-custom {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 8px 16px;
  display: inline-block;
  transition: var(--transition);
  position: relative;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2.5px;
  background-color: var(--accent-blue);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: bottom right;
}

.nav-link-custom:hover {
  color: var(--primary-navy);
}

.nav-link-custom:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.nav-link-custom.active {
  color: var(--primary-navy);
}

.nav-link-custom.active::after {
  transform: scaleX(1);
}

/* Adjustments for Mobile Toggle */
.navbar-toggler {
  border: 1.5px solid var(--border-color);
  padding: 8px 12px;
  border-radius: 10px;
  transition: var(--transition);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
  outline: none;
}

/* Premium Buttons & CTA */
.btn-premium {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-hover) 100%);
  color: var(--white);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.25);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-premium:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent-blue-hover) 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-premium-outline {
  background-color: transparent;
  color: var(--primary-navy);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 11px 28px;
  border-radius: 50px;
  border: 2px solid var(--primary-navy);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-premium-outline:hover {
  background-color: var(--primary-navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* Cinematic Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(9, 13, 26, 0.94) 0%, rgba(18, 24, 41, 0.88) 100%);
  color: var(--white);
  padding: 120px 0 140px;
  overflow: hidden;
}

.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: contrast(1.1) brightness(0.9);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 75% 20%, rgba(59, 130, 246, 0.22) 0%, transparent 60%);
  z-index: -1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 850;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 25px;
}

.hero-title span {
  background: linear-gradient(135deg, #93c5fd, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: #94a3b8;
  margin-bottom: 35px;
  line-height: 1.75;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.hero-bullets li {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start; /* Aligns checkbox icon to top line of text */
  gap: 14px;
  color: #cbd5e1;
  text-align: left;
}

.hero-bullets li i {
  color: var(--accent-blue);
  font-size: 1.25rem;
  margin-top: 3px; /* Slightly offset checkmark downward to match first line of text */
  flex-shrink: 0; /* Prevents icon from squeezing */
  filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.4));
}

/* Trust Card / Hero Image Wrapper */
.hero-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition);
}

.hero-image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-trust-box {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(9, 13, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius);
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-box-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e2e8f0;
}

.trust-box-item i {
  color: var(--accent-blue);
  font-size: 1.1rem;
}

/* Trust / Value Cards Section */
.trust-cards-section {
  padding: 70px 0;
  background-color: var(--white);
  margin-top: -60px;
  position: relative;
  z-index: 5;
}

.value-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 35px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(59, 130, 246, 0.25);
}

.value-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background-color: var(--accent-blue-light);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  transition: var(--transition);
}

.value-card:hover .value-icon {
  background-color: var(--accent-blue);
  color: var(--white);
  transform: scale(1.05);
}

.value-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.value-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Premium Form Section */
.form-section {
  padding: 110px 0;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.form-container-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 55px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(59, 130, 246, 0.18);
  position: relative;
}

.form-container-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--accent-blue), #1e3a8a);
  border-top-left-radius: var(--border-radius-lg);
  border-top-right-radius: var(--border-radius-lg);
}

.form-header-badge {
  background-color: var(--accent-blue-light);
  color: var(--accent-blue);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 18px;
}

.form-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.form-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.form-label-custom {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-navy);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.form-label-custom .required-star {
  color: var(--error-color);
}

/* Custom Select & Input Styling */
.form-select-custom, .form-input-custom {
  display: block;
  width: 100%;
  padding: 15px 20px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--primary-navy);
  background-color: var(--bg-light);
  background-clip: padding-box;
  border: 1.5px solid var(--border-color);
  border-radius: 12px;
  transition: var(--transition);
  appearance: none;
}

.form-select-custom {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23475569' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px 12px;
}

.form-select-custom:focus, .form-input-custom:focus {
  outline: 0;
  border-color: var(--accent-blue);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.form-select-custom::placeholder, .form-input-custom::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

/* Validation Style */
.form-group-container {
  margin-bottom: 28px;
  position: relative;
}

.form-error-message {
  color: var(--error-color);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 6px;
  display: none;
}

.form-group-container.has-error .form-select-custom,
.form-group-container.has-error .form-input-custom {
  border-color: var(--error-color);
  background-color: #fef2f2;
}

.form-group-container.has-error .form-select-custom:focus,
.form-group-container.has-error .form-input-custom:focus {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}

.form-group-container.has-error .form-error-message {
  display: block;
}

/* Consent Checkbox Styling */
.consent-container {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  margin-top: 10px;
  margin-bottom: 35px;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.consent-checkbox-custom {
  width: 22px;
  height: 22px;
  margin-top: 3px;
  border: 1.5px solid var(--border-color);
  border-radius: 6px;
  cursor: pointer;
  accent-color: var(--accent-blue);
  flex-shrink: 0;
}

.consent-text-links {
  color: var(--accent-blue);
  text-decoration: underline;
  font-weight: 600;
}

.consent-text-links:hover {
  color: var(--accent-blue-hover);
}

/* Form Action CTA */
.btn-form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-hover) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 1.3rem;
  padding: 18px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 22px rgba(59, 130, 246, 0.35);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn-form-submit:hover {
  background: linear-gradient(135deg, var(--accent-blue-hover) 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.45);
}

/* Compensation Claim Types Section (New Section) */
.compensation-section {
  padding: 110px 0;
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.claim-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 35px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.claim-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(59, 130, 246, 0.2);
}

.claim-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: #f0fdf4;
  color: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
}

.claim-card:hover .claim-icon-wrapper {
  background-color: var(--accent-teal);
  color: var(--white);
}

.claim-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-navy);
}

.claim-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Benefits Section Styling */
.benefits-section {
  padding: 110px 0;
  background-color: var(--white);
}

.benefits-badge {
  background-color: #f0fdf4;
  color: var(--accent-teal);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 18px;
}

.benefits-title {
  font-size: 2.75rem;
  font-weight: 850;
  margin-bottom: 20px;
  line-height: 1.2;
}

.benefits-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 55px;
}

.benefit-block {
  display: flex;
  gap: 22px;
  margin-bottom: 40px;
}

.benefit-check-icon {
  width: 48px;
  height: 48px;
  background-color: #f0fdf4;
  color: var(--accent-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.benefit-block-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit-block-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin: 0;
}

.benefits-image-wrapper {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

/* How It Works Section */
.how-it-works-section {
  padding: 110px 0;
  background-color: var(--white);
}

.step-card {
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.step-number-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-hover) 100%);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 6px 15px rgba(59, 130, 246, 0.3);
  position: relative;
  z-index: 2;
}

.step-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.step-card-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin: 0;
}

/* Connecting Arrow / Line between Steps */
.step-col {
  position: relative;
}

.step-col:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  left: 60%;
  width: 80%;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

@media (max-width: 991px) {
  .step-col {
    margin-bottom: 45px;
  }
  .step-col:not(:last-child)::after {
    display: none;
  }
}

/* FAQ Accordion Section */
.faq-section {
  padding: 110px 0;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.accordion-custom .accordion-item {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-bottom: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.accordion-custom .accordion-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(59, 130, 246, 0.25);
}

.accordion-custom .accordion-button {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-navy);
  padding: 22px 26px;
  background-color: var(--white);
  border: none;
  box-shadow: none;
}

.accordion-custom .accordion-button:not(.collapsed) {
  background-color: var(--accent-blue-light);
  color: var(--accent-blue-hover);
  border-bottom: 1px solid var(--border-color);
}

.accordion-custom .accordion-button::after {
  background-size: 1.2rem;
  transition: transform 0.2s ease-in-out;
}

.accordion-custom .accordion-body {
  padding: 22px 26px;
  font-size: 0.98rem;
  color: var(--text-dark);
  line-height: 1.75;
  background-color: var(--white);
}

/* Footer Section */
.footer-section {
  background-color: var(--primary-navy);
  color: #94a3b8;
  padding: 90px 0 45px;
  border-top: 6px solid var(--accent-blue);
}

.footer-brand-title {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-brand-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-info li {
  margin-bottom: 14px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact-info li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-info li a:hover {
  color: var(--white);
}

.footer-contact-info li i {
  color: var(--accent-blue);
}

.footer-links-title {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background-color: var(--accent-blue);
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-block;
}

.footer-links-list li a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-disclaimer-container {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--border-radius);
  padding: 28px;
  font-size: 0.825rem;
  line-height: 1.75;
  color: #64748b;
  margin-top: 45px;
  margin-bottom: 35px;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 30px;
  font-size: 0.85rem;
}

.footer-bottom-bar a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 600;
}

/* Secondary Pages Specific Styling */
.legal-page-header {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
  color: var(--white);
  padding: 70px 0;
  border-bottom: 5px solid var(--accent-blue);
}

.legal-page-title {
  font-size: 2.75rem;
  font-weight: 850;
  color: var(--white);
  margin-bottom: 12px;
}

.legal-page-subtitle {
  font-size: 1.15rem;
  color: #94a3b8;
}

.legal-content-container {
  padding: 90px 0;
  background-color: var(--white);
}

.legal-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 45px;
  box-shadow: var(--shadow-sm);
}

.legal-card h2 {
  font-size: 1.55rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 18px;
  color: var(--primary-navy);
}

.legal-card h2:first-of-type {
  margin-top: 0;
}

.legal-card p, .legal-card ul {
  font-size: 0.98rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 22px;
}

.legal-card ul {
  padding-left: 22px;
}

.legal-card li {
  margin-bottom: 12px;
}

/* Partner Table Styling */
.partner-table {
  width: 100%;
  margin-top: 25px;
  margin-bottom: 35px;
  border-collapse: collapse;
}

.partner-table th, .partner-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.partner-table th {
  background-color: var(--bg-light);
  color: var(--primary-navy);
  font-weight: 700;
}

.partner-table tr:hover {
  background-color: var(--accent-blue-light);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-section {
    padding: 70px 0 90px;
  }
  .hero-title {
    font-size: 2.75rem;
  }
  .hero-subtitle {
    font-size: 1.15rem;
  }
  .hero-bullets {
    margin-bottom: 30px;
  }
  .form-container-card {
    padding: 35px;
    margin-top: 45px;
  }
  .form-title {
    font-size: 2rem;
  }
  .benefits-section {
    padding: 70px 0;
  }
  .benefits-title {
    font-size: 2.25rem;
  }
  .benefits-image-wrapper {
    margin-top: 45px;
  }
  .compensation-section {
    padding: 70px 0;
  }
  .how-it-works-section {
    padding: 70px 0;
  }
  .faq-section {
    padding: 70px 0;
  }
  .footer-section {
    padding: 70px 0 35px;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 2rem;
  }
  .btn-premium, .btn-premium-outline {
    width: 100%;
    justify-content: center;
  }
  .btn-premium-outline {
    margin-top: 14px;
  }
  .form-container-card {
    padding: 24px;
  }
  .form-title {
    font-size: 1.65rem;
  }
  .form-subtitle {
    font-size: 1rem;
  }
  .legal-card {
    padding: 24px;
  }
}
