/* Home Page Specific Styles */

/* Hero Section Heights */
.home-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-content {
  width: 100%;
  padding: 2rem 1rem;
}

/* Mobile Hero Section Height */
@media (max-width: 768px) {
  .home-hero {
    min-height: 70vh;
  }
}

/* Main Content Container System */
.main-content-section {
  padding: 4rem 0;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* New Container System */
.main-content-container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Responsive Container */
@media (max-width: 1200px) {
  .main-content-container {
    width: 88%;
  }
}

@media (max-width: 1024px) {
  .main-content-container {
    width: 92%;
  }
}

@media (max-width: 768px) {
  .main-content-container {
    width: 94%;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .main-content-container {
    width: 96%;
    padding: 0 0.75rem;
  }
}

/* States Section Styles */
.states-section {
  padding: 4rem 0;
  background: var(--color-white-soft);
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.states-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="5" height="5" patternUnits="userSpaceOnUse"><path d="M 5 0 L 0 0 0 5" fill="none" stroke="%23e9ecef" stroke-width="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

/* New Container System */
.states-container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Responsive Container */
@media (max-width: 1200px) {
  .states-container {
    width: 88%;
  }
}

@media (max-width: 1024px) {
  .states-container {
    width: 92%;
  }
}

@media (max-width: 768px) {
  .states-container {
    width: 94%;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .states-container {
    width: 96%;
    padding: 0 0.75rem;
  }
}

.states-header {
  text-align: center;
  margin-bottom: 3rem;
}

.states-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-black);
  margin: 0 0 1rem 0;
  position: relative;
  display: inline-block;
}

.states-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--color-secondary);
  border-radius: 2px;
}

.states-subtitle {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: #666;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.state-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.state-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-secondary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.state-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.state-card:hover::before {
  transform: scaleX(1);
}

.state-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-black);
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.state-icon {
  width: 32px;
  height: 32px;
  background: var(--color-secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.9rem;
}

.state-description {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.state-stats {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-secondary);
  display: block;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.states-cta {
  text-align: center;
  margin-top: 3rem;
}

.states-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--color-secondary);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(250, 95, 49, 0.3);
}

.states-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(250, 95, 49, 0.4);
}

.states-cta .btn-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Responsive Design */
@media (max-width: 768px) {
  .states-section {
    padding: 2.5rem 0;
  }
  
  .states-container {
    padding: 0 1rem;
  }
  
  .states-title {
    font-size: 2rem;
  }
  
  .states-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .states-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .state-card {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }
  
  .state-name {
    font-size: 1.25rem;
  }
  
  .state-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  
  .states-cta .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .states-section {
    padding: 2rem 0;
  }
  
  .states-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }
  
  .states-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .state-card {
    padding: 1.25rem;
    margin: 0;
  }
  
  .state-name {
    font-size: 1.1rem;
    gap: 0.5rem;
  }
  
  .state-icon {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }
  
  .state-description {
    font-size: 0.9rem;
  }
  
  .state-stats {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
  }
  
  .stat-number {
    font-size: 1.1rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  .states-cta .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }
}

/* Comparison Table Section */
.comparison-section {
  padding: 4rem 0;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* New Container System */
.comparison-container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Responsive Container */
@media (max-width: 1200px) {
  .comparison-container {
    width: 88%;
  }
}

@media (max-width: 1024px) {
  .comparison-container {
    width: 92%;
  }
}

@media (max-width: 768px) {
  .comparison-container {
    width: 94%;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .comparison-container {
    width: 96%;
    padding: 0 0.75rem;
  }
}

.comparison-header {
  text-align: center;
  margin-bottom: 4rem;
}

.comparison-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-black);
  margin: 0 0 1.5rem 0;
  position: relative;
  display: inline-block;
}

.comparison-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: var(--color-secondary);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(250, 95, 49, 0.3);
}

.comparison-subtitle {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  color: #666;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 400;
}

.comparison-table-wrapper {
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-top: 3rem;
  position: relative;
  transform: translateY(0);
  transition: all 0.4s ease;
  max-height: 600px;
  overflow-y: auto;
}

.comparison-table-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
}

.comparison-table thead {
  background: var(--color-primary);
  color: var(--color-black);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.comparison-table th {
  padding: 2rem 1.5rem;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  border: none;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.comparison-table th:first-child {
  border-radius: 20px 0 0 0;
  width: 25%;
}

.comparison-table th:last-child {
  border-radius: 0 20px 0 0;
}

.comparison-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
}

.comparison-table tbody tr:hover {
  background: rgba(207, 232, 17, 0.05);
  transform: scale(1.01);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table td {
  padding: 1.5rem 1.5rem;
  vertical-align: top;
  line-height: 1.7;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.comparison-table td:first-child {
  font-weight: 700;
  color: var(--color-black);
  background: #f8f9fa;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  position: relative;
}

.comparison-table td:first-child::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-secondary);
}

.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3) {
  color: #444;
  font-weight: 400;
}

.comparison-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.comparison-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.comparison-badge--no-credit {
  background: var(--color-primary);
  color: var(--color-black);
  border: 2px solid var(--color-primary);
}

.comparison-badge--no-screening {
  background: var(--color-secondary);
  color: var(--color-black);
  border: 2px solid var(--color-secondary);
}

.comparison-highlight {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1.05rem;
}

.comparison-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
  vertical-align: middle;
  fill: currentColor;
}



/* Comparison CTA Section */
.comparison-cta {
  margin-top: 4rem;
  text-align: center;
  padding: 3rem 2rem;
  background: #f8f9fa;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-cta-content h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-black);
  margin: 0 0 1rem 0;
}

.comparison-cta-content p {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: #666;
  margin: 0 0 2rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.comparison-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.comparison-cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.comparison-cta-buttons .btn--primary {
  background: var(--color-secondary);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(250, 95, 49, 0.3);
}

.comparison-cta-buttons .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(250, 95, 49, 0.4);
}

.comparison-cta-buttons .btn--secondary {
  background: var(--color-white);
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comparison-cta-buttons .btn--secondary:hover {
  transform: translateY(-2px);
  background: var(--color-secondary);
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(250, 95, 49, 0.4);
}

.comparison-cta-buttons .btn-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Screen reader only class for accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Steps Section Styles */
.steps-section {
  padding: 6rem 0;
  background: var(--color-black);
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}



/* New Container System */
.steps-container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Responsive Container */
@media (max-width: 1200px) {
  .steps-container {
    width: 88%;
  }
}

@media (max-width: 1024px) {
  .steps-container {
    width: 92%;
  }
}

@media (max-width: 768px) {
  .steps-container {
    width: 94%;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .steps-container {
    width: 96%;
    padding: 0 0.75rem;
  }
}

.steps-header {
  text-align: center;
  margin-bottom: 4rem;
}

.steps-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 1.5rem 0;
  position: relative;
  display: inline-block;
}

.steps-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: var(--color-primary);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(207, 232, 17, 0.3);
}

.steps-subtitle {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  color: var(--color-white);
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 400;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.step-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.step-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  margin: 0 auto 2rem auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(207, 232, 17, 0.3);
  transition: all 0.3s ease;
}

.step-card:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(207, 232, 17, 0.4);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-black);
  margin: 0 0 1.5rem 0;
  line-height: 1.3;
}

.step-description {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.steps-cta {
  text-align: center;
  margin-top: 4rem;
}

.steps-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: var(--color-primary);
  color: var(--color-black);
  text-decoration: none;
  border-radius: 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(207, 232, 17, 0.3);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.steps-cta .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.steps-cta .btn:hover {
  transform: translateY(-3px);
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.steps-cta .btn:hover::before {
  left: 100%;
}

.steps-cta .btn-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Responsive Design for Steps */
@media (max-width: 768px) {
  .steps-section {
    padding: 4rem 0;
  }
  
  .steps-container {
    padding: 0 1rem;
  }
  
  .steps-header {
    margin-bottom: 2.5rem;
  }
  
  .steps-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .steps-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
  }
  
  .step-card {
    padding: 2rem 1.5rem;
  }
  
  .step-number {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
  
  .step-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .steps-cta .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .steps-section {
    padding: 3rem 0;
  }
  
  .steps-header {
    margin-bottom: 2rem;
  }
  
  .steps-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }
  
  .steps-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .steps-grid {
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .step-card {
    padding: 1.5rem 1.25rem;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
  
  .step-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .step-description {
    font-size: 0.95rem;
  }
  
  .steps-cta .btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }
}

/* Help Section Styles */
.help-section {
  padding: 50px 0;
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* New Container System */
.help-container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Responsive Container */
@media (max-width: 1200px) {
  .help-container {
    width: 88%;
  }
}

@media (max-width: 1024px) {
  .help-container {
    width: 92%;
  }
}

@media (max-width: 768px) {
  .help-container {
    width: 94%;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .help-container {
    width: 96%;
    padding: 0 0.75rem;
  }
}

.help-header {
  text-align: center;
  margin-bottom: 4rem;
}

.help-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-black);
  margin: 0 0 1.5rem 0;
  position: relative;
  display: inline-block;
}

.help-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: var(--color-black);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.help-subtitle {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  color: var(--color-black);
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 400;
}

.help-cta {
  text-align: center;
  margin-top: 3rem;
}

.help-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.help-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  text-decoration: none;
  border-radius: 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.help-btn--primary {
  background: var(--color-white);
  color: var(--color-black);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.help-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.help-btn--secondary {
  background: var(--color-black);
  color: var(--color-white);
  border: 2px solid var(--color-black);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.help-btn--secondary:hover {
  transform: translateY(-3px);
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.help-btn-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

         /* Responsive Design for Help Section */
         @media (max-width: 768px) {
           .help-section {
             padding: 40px 0; /* Adjusted for mobile */
           }
  
  .help-container {
    padding: 0 1rem;
  }
  
  .help-header {
    margin-bottom: 2.5rem;
  }
  
  .help-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .help-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .help-cta {
    margin-top: 2rem;
  }
  
  .help-cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .help-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    justify-content: center;
  }
}

         @media (max-width: 480px) {
           .help-section {
             padding: 30px 0; /* Adjusted for smaller mobile */
           }
  
  .help-header {
    margin-bottom: 2rem;
  }
  
  .help-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }
  
  .help-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .help-cta {
    margin-top: 1.5rem;
  }
  
  .help-btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }
}

/* Responsive Design for Comparison Table */
@media (max-width: 768px) {
  .comparison-section {
    padding: 2.5rem 0;
  }
  
  .comparison-container {
    padding: 0 1rem;
  }
  
  .comparison-header {
    margin-bottom: 2.5rem;
  }
  
  .comparison-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .comparison-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .comparison-table-wrapper {
    border-radius: 12px;
    overflow-x: auto;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-height: 500px;
  }
  
  .comparison-table {
    min-width: 600px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 1rem 0.75rem;
    font-size: 0.9rem;
  }
  
  .comparison-table th:first-child {
    border-radius: 12px 0 0 0;
  }
  
  .comparison-table th:last-child {
    border-radius: 0 12px 0 0;
  }
  
  .comparison-badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.75rem;
  }
  
  .comparison-icon {
    width: 18px;
    height: 18px;
  }
  

  
  /* CTA Tablet Responsiveness */
  .comparison-cta {
    margin-top: 3rem;
    padding: 2.5rem 1.5rem;
  }
  
  .comparison-cta-content h3 {
    font-size: 1.75rem;
  }
  
  .comparison-cta-content p {
    font-size: 1.05rem;
  }
  
  .comparison-cta-buttons .btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .comparison-section {
    padding: 2rem 0;
  }
  
  .comparison-header {
    margin-bottom: 2rem;
  }
  
  .comparison-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }
  
  .comparison-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .comparison-table-wrapper {
    margin-top: 1.5rem;
    border-radius: 8px;
    max-height: 400px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
  }
  
  .comparison-table th:first-child {
    border-radius: 8px 0 0 0;
  }
  
  .comparison-table th:last-child {
    border-radius: 0 8px 0 0;
  }
  
  .comparison-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .comparison-icon {
    width: 16px;
    height: 16px;
    margin-right: 0.25rem;
  }
  
  .comparison-highlight {
    font-size: 1rem;
  }
  

  
  /* CTA Mobile Responsiveness */
  .comparison-cta {
    margin-top: 2rem;
    padding: 2rem 1rem;
    border-radius: 12px;
  }
  
  .comparison-cta-content h3 {
    font-size: 1.5rem;
  }
  
  .comparison-cta-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .comparison-cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .comparison-cta-buttons .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    justify-content: center;
  }
}


