.get-started-hero .hero-sub {
  max-width: 520px;
}

.get-started-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  margin: 40px 0;
  align-items: stretch;
}
.strengths-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.strengths-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 10px 0 8px;
  color: var(--text-dark);
}

.strengths-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.why-choose-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.why-choose-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.why-choose-list li strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.why-choose-list li p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.check-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.check-icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--white);
}

.project-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.project-form-card h2 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.project-form-card .form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.project-form-card form {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.faq-section {
  background: var(--light-bg);
}


@media (max-width: 900px) {
  .get-started-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .why-choose-list li {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .project-form-card,
  .strengths-card {
    padding: 24px 18px;
  }
}