/* =========================
   ECLECTIC PAGE STYLES
   ========================= */

/* === Credit Health === */
.credit-health {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  gap: 20px;
}

.credit-health img {
  max-width: 400px;
  width: 100%;
  border-radius: 10px;
}

.credit-health .content {
  max-width: 550px;
}

.credit-health h3 {
  margin-top: 0;
  color: #007bff;
}

/* === Linked Businesses === */
.linked-businesses ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.linked-businesses li {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.linked-businesses li a {
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  color: #1abc9c;
  margin-bottom: 10px;
}

.linked-businesses li p {
  margin: 0;
  color: #555;
  line-height: 1.5;
  text-align: left;
}

/* === Cashflow Highlight === */
.cashflow-highlight {
  background: linear-gradient(135deg, #007bff, #00b894);
  color: white;
  padding: 50px 20px;
  border-radius: 12px;
  text-align: center;
  margin: 60px auto;
  max-width: 900px;
}

.cashflow-highlight .cta-button {
  background: white;
  color: #007bff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
  transition: all 0.2s ease;
}

.cashflow-highlight .cta-button:hover {
  background: #f1f1f1;
}

/* === Responsive for Eclectic sections === */
@media(max-width:768px) {
  .credit-health {
    flex-direction: column;
  }
}
