/* FAQ Page Styles */
.info-wrapper {
  max-width: 920px;
  margin: 0 auto;
  padding: 48px 16px 120px;
}

.info-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 56px;
  margin-top: 0;
  color: #2c3e50;
  line-height: 1.2;
}

/* Info page-specific button override */
.info-wrapper .btn {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
  color: white !important;
  font-size: 1.1rem !important;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2) !important;
}

.info-wrapper .btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3) !important;
  color: white !important;
}

/* Stats Section */
.stats-section {
  margin-bottom: 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 12px;
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: #5a6c7d;
  font-weight: 500;
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 24px;
}

.process-step {
  padding: 24px;
  background: white;
  border-radius: 16px;
  border: 1px solid #e9ecef;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.process-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.process-step h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 1rem;
  color: #5a6c7d;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

/* Roles Grid */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 24px;
}

.role-category {
  padding: 24px;
  background: white;
  border-radius: 16px;
  border: 1px solid #e9ecef;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.role-category:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}

.role-category h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 16px;
}

.role-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.role-category li {
  padding: 8px 0;
  color: #5a6c7d;
  font-size: 1rem;
  border-bottom: 1px solid #f1f3f4;
}

.role-category li:last-child {
  border-bottom: none;
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 24px;
}

.faq-item {
  padding: 24px;
  background: white;
  border-radius: 16px;
  border: 1px solid #e9ecef;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}

.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 1rem;
  color: #5a6c7d;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.faq-item ul {
  margin: 0;
  padding-left: 20px;
  flex-grow: 1;
}

.faq-item li {
  font-size: 1rem;
  color: #5a6c7d;
  line-height: 1.6;
  margin-bottom: 8px;
}

.faq-item li:last-child {
  margin-bottom: 0;
}

.info-block {
  margin-bottom: 40px;
}

.info-block h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #2c3e50;
}

.info-block p {
  font-size: 1.1rem;
  color: #5a6c7d;
  line-height: 1.7;
  margin: 0 0 16px 0;
}

.info-block p:last-child {
  margin-bottom: 0;
}

.info-block a {
  color: #ff6b35;
  text-decoration: none;
  border-bottom: 1px dotted #ff6b35;
  transition: all 0.3s ease;
}

.info-block a:hover {
  border-color: #f7931e;
  color: #f7931e;
}

.info-block.highlight {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 16px;
  margin-top: 32px;
  border: 1px solid #e9ecef;
}

.info-block.highlight h2 {
  color: #2c3e50;
}

.info-block.highlight p {
  color: #5a6c7d;
}

.info-block.callout {
  background: linear-gradient(135deg, #fff4e5 0%, #ffe8cc 100%);
  padding: 32px;
  border-radius: 16px;
  margin-top: 32px;
  border: 1px solid #ffd591;
}

.info-block.callout h2 {
  color: #2c3e50;
}

.info-block.callout p {
  color: #5a6c7d;
}

.info-block.seo-note p {
  font-size: 1rem;
  color: #6b7280;
  text-align: center;
  font-style: italic;
}

.email-example {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 20px 24px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 14px;
  line-height: 1.6;
  white-space: pre-line;
  margin: 20px 0;
  color: #2c3e50;
  flex-grow: 1;
  min-height: 200px;
}

.email-example strong {
  font-weight: 600;
  color: #2c3e50;
}

.email-example em {
  font-style: italic;
  color: #5a6c7d;
}

.nav-cta .nav-btn {
  display: inline-block !important;
  padding: 12px 24px !important;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
  color: white !important;
  text-decoration: none !important;
  border-radius: 12px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2) !important;
  width: auto !important;
  text-align: center !important;
  margin: 0 auto !important;
}

.nav-cta .nav-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3) !important;
  color: white !important;
  text-decoration: none !important;
}

@media (max-width: 768px) {
  .info-wrapper {
    padding: 32px 16px 96px;
  }

  .info-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .info-block h2 {
    font-size: 1.2rem;
  }

  .info-block p {
    font-size: 1rem;
  }

  .info-block.highlight,
  .info-block.callout {
    padding: 24px 20px;
  }

  .info-wrapper .btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .roles-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .info-wrapper {
    padding: 24px 12px 80px;
  }

  .info-title {
    font-size: 1.8rem;
    margin-bottom: 32px;
  }

  .info-block h2 {
    font-size: 1.1rem;
  }

  .info-block p {
    font-size: 0.95rem;
  }

  .info-block.highlight,
  .info-block.callout {
    padding: 20px 16px;
  }

  .info-wrapper .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .stat-item {
    padding: 16px 12px;
  }
  
  .process-step,
  .role-category,
  .faq-item {
    padding: 16px;
  }
}