/* CSS for section section:Hero */
#section-hero {
  padding: 80px 0 60px;
  text-align: center;
}

.hero-header {
  margin-bottom: 40px;
}

.hero-header h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(55, 65, 81, 0.8);
  max-width: 800px;
  margin: 0 auto;
}

.hero-content {
  max-width: 820px;
  margin: 0 auto;
  background-color: var(--text-gray);
  color: white;
  padding: 40px;
  border-radius: 8px; /* Added slightly for aesthetics, though design says 0px usually */
  /* Overriding background based on Figma text color context, actually the text is dark in Figma but the block might be conceptual. 
     Wait, looking at Figma JSON 1:1413, text color is #374151 (Dark Gray). 
     The background 1:1412 is White. 
     Let's correct: The text is dark on white background. */
  background-color: transparent;
  color: var(--text-gray);
  padding: 0;
}

.hero-content p {
  font-size: 20px;
  line-height: 1.6;
}

/* CSS for section section:Features */
#section-features {
  background-color: var(--bg-light-green);
  padding: 80px 0;
}

.features-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features-header {
  text-align: center;
  margin-bottom: 40px;
}

.features-header h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.features-header p {
  font-size: 18px;
  color: var(--text-gray);
}

.features-list {
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.feature-item {
  background-color: white;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.feature-item img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 18px;
  color: var(--text-gray);
}

.btn-primary {
  background-color: var(--primary-green);
  color: white;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

/* CSS for section section:Process */
#section-process {
  padding: 80px 0;
  background-color: white;
}

.process-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-header {
  margin-bottom: 60px;
}

.process-header h2 {
  font-size: 32px;
}

.process-steps {
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

/* Optional: Add a vertical line connecting steps */
.process-steps::before {
  content: '';
  position: absolute;
  left: 24px; /* Center of the number circle (50px width / 2) */
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #e5e7eb;
  z-index: 0;
}

.step-item {
  display: flex;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: white;
  border: 2px solid var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--primary-green);
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-content p {
  color: var(--text-gray);
  font-size: 16px;
}

.btn-orange {
  background-color: var(--secondary-orange);
  color: white;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
}

.btn-orange:hover {
  background-color: #d35400;
}

/* CSS for section section:Join */
#section-join {
  padding: 80px 0;
  background-color: white;
}

.join-container {
  text-align: center;
}

.join-header {
  margin-bottom: 60px;
}

.join-header h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.join-header p {
  font-size: 18px;
  color: var(--text-gray);
}

.join-options {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.option-card {
  width: 304px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background-color: white;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.2s;
}

.option-card:hover {
  transform: translateY(-5px);
}

.option-card img {
  width: 32px;
  height: 32px;
}

.option-card span {
  font-family: var(--font-heading);
  color: var(--primary-green);
  font-size: 18px;
}

.option-outline {
  box-shadow: none;
  border: 2px solid var(--primary-green);
}

@media (max-width: 768px) {
  .join-options {
    flex-direction: column;
    align-items: center;
  }
}


