/* ============================
   HERO
============================ */
.business-hero {
  background: url("../images/connection2.png") center/cover no-repeat;
  padding: 160px 20px;
  color: #fff;
  text-align: center;
  position: relative;
}

.business-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.business-hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.business-hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* ============================
   SECTION
============================ */
.business-section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}

.business-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  border-left: 5px solid #111;
  padding-left: 12px;
}

.business-section p {
  line-height: 1.8;
  margin-bottom: 40px;
}

/* ============================
   BUSINESS CARDS
============================ */
.business-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.business-card {
  flex: 1 1 calc(33% - 30px);
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.business-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.business-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* ============================
   STRENGTHS
============================ */
.strengths {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.strength {
  flex: 1 1 calc(33% - 30px);
  background: #aaa;
  color: #fff;
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s;
}

.strength:hover {
  background: #333;
}

.strength h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* ============================
   CTA
============================ */
.cta-area {
  text-align: center;
  padding: 80px 20px;
  background: #f5f5f5;
  color: #000;
}

.cta-area h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #fff;
  color: #111;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #ddd;
}

/* ============================
   MOBILE
============================ */
@media (max-width: 768px) {
  .business-hero h1 {
    font-size: 32px;
  }

  .business-cards,
  .strengths {
    flex-direction: column;
  }

  .business-card,
  .strength {
    flex: 1 1 100%;
  }
}
