/* static/css/components/investment-faq.css */
/* Investment FAQ Component */
.investment-faq {
  max-width: 100%;
}

.investment-faq__title {
  color: #EB1260;
  font-family: Inter, sans-serif;
  font-size: clamp(1.125rem, 3vw, 1.25rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.investment-faq__questions {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 2rem);
}

.investment-faq__question {
  padding-bottom: clamp(1rem, 3vw, 1.5rem);
  border-bottom: 1px solid var(--border-primary);
}

.investment-faq__question:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Continuing investment-faq.css */
.investment-faq__question-title {
  color: #E3E1EB;
  font-family: Poppins, sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
 }
 
 .investment-faq__question-answer {
  color: #B8C4D6;
  font-family: Poppins, sans-serif;
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
 }
 
 /* Investment Help Section */
 .investment-help-section {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 2rem);
 }
 
 .investment-help-section__card {
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: 16px;
  border: 1px solid #EB1260;
  background: #44094F;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.10), 0px 2px 4px -2px rgba(0, 0, 0, 0.10);
 }
 
 .investment-help-section__title {
  color: #FFF;
  font-family: Poppins, sans-serif;
  font-size: clamp(1.125rem, 3vw, 1.25rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
 }
 
 .investment-help-section__description {
  color: #E3E1EB;
  font-family: Poppins, sans-serif;
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
 }
 
 .investment-help-section__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
 }
 
 .investment-help-section__contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
 }
 
 .investment-help-section__contact-text {
  color: #E3E1EB;
  font-family: Poppins, sans-serif;
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 500;
  line-height: 1.5;
 }
 
 .investment-help-section__resources {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
 }
 
 .investment-help-section__resource-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #E3E1EB;
  font-family: Poppins, sans-serif;
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  transition: color var(--transition-base);
 }
 
 .investment-help-section__resource-link:hover {
  color: #EB1260;
 }
 
 .investment-help-section__resource-link svg {
  color: #EB1260;
  transition: transform var(--transition-base);
 }
 
 .investment-help-section__resource-link:hover svg {
  transform: translateX(4px);
 }