/* SECTION */
.branches-section {
  padding: 90px 20px;
  background: #f5f7fb;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 60px;
  text-transform: uppercase;
  color: #0B2559;
}

/* WRAPPER */
.branches-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD */
.branch-card {
  background: #fff;
  width: 320px;
  padding: 40px 30px;
  border-radius: 18px;
  text-align: center;

  border-top: 4px solid #8DC63F;

  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.branch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* ICON */
.icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

/* TITLE */
.branch-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #0B2559;
}

/* TEXT */
.branch-card p {
  color: #6b7280;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* BUTTON */
.branch-btn {
  background: #8DC63F;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.branch-btn:hover {
  background: #c9a227;
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }

  .branch-card {
    width: 100%;
    max-width: 350px;
  }
}