/* Add custom CSS styles below */ 
.bayouni-branches {
  background: transparent;
  padding: 20px 15px;
  text-align: center;
  direction: rtl;
}

.bayouni-branches h3 {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 10px;
}

.bayouni-branches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.bayouni-branch-item {
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 12px 10px;
}

.bayouni-branch-item h4 {
  color: #e8c97e;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
}

.bayouni-branch-item p {
  color: rgba(255,255,255,0.85);
  font-size: 20px;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 480px) {
  .bayouni-branches-grid {
    grid-template-columns: 1fr;
  }
}