.solar-aides {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    background-color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    color: #000000;
}

.solar-aides h2 {
  font-size: 24px;
  margin-bottom: 40px;
  color: #10367A;
}

.solar-aides .highlight {
  color: #FE5716;
  font-weight: bold;
}

.aides-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.aide-box {
  background: white;
  border-radius: 8px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.aide-box img {
  height: 48px;
  margin-bottom: 15px;
}

.aide-box h3 {
  color: #000000;
  font-size: 16px;
  margin-bottom: 10px;
}

.aide-box p {
  font-size: 14px;
  color: #000000;
  line-height: 1.5;
}

.orange {
  color: #FE5716;
  font-weight: bold;
}

.plus-sign {
  font-size: 30px;
  font-weight: bold;
  color: #D3D3D3;
  align-self: center;
}

.cta-button {
  margin-top: 40px;
}

.cta {
  background-color: #FE5716;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s ease-in-out;
}

.cta:hover {
  background-color: #10367A;
}

/* Mobile improvements: stack the grid, hide decorative plus signs, make CTA full width */
@media (max-width: 768px) {
  .solar-aides {
    padding: 16px;
    border-radius: 0px;
    box-shadow: none;
  }

  .solar-aides h2 {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .aides-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .aide-box {
    width: 100%;
    padding: 14px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    text-align: left;
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }

  .aide-box img {
    height: 40px;
    flex: 0 0 48px;
    margin: 0;
  }

  .aide-box h3 {
    font-size: 15px;
    margin: 0 0 6px 0;
  }

  .aide-box p {
    font-size: 13px;
    margin: 0;
    color: #000000;
  }

  .plus-sign {
    display: none; /* decorative only on desktop */
  }

  .cta-button {
    margin-top: 18px;
  }

  .cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 16px;
    border-radius: 8px;
  }
}