* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  color: white;
  background: #000;
  overflow-x: hidden;
}

.background-overlay {
  background: url('6855b2ed-1635-43b7-ab1b-532e71b00960.png') no-repeat center center/cover;
  background-attachment: fixed;
  min-height: 100vh;
  padding: 20px;
  backdrop-filter: brightness(0.5);
}

.contact-list p {
  font-size: 0.9rem;
  margin: 5px 0;
  text-shadow: 0 1px 2px black;
}

.logo-title {
  text-align: center;
  margin-top: 20px;
}

.logo-title img {
  width: 120px;
  margin-bottom: 10px;
}

.title {
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px black;
  letter-spacing: 4px;
}

.subtitle {
  font-size: 1.2rem;
  margin-top: 10px;
  font-weight: 500;
}

.branches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.branch {
  padding: 15px 25px;
  border-radius: 12px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  min-width: 180px;
  transition: transform 0.2s ease;
}
.branch:hover {
  transform: scale(1.05);
}

.branch small {
  display: block;
  margin-top: 4px;
  font-weight: normal;
  font-size: 0.9rem;
}

.badge {
  background: #000;
  color: white;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 6px;
  margin-left: 5px;
}
.badge.new {
  background: #fff;
  color: #000;
}

.red { background: #c0392b; }
.blue { background: #2980b9; }
.green { background: #27ae60; }
.yellow { background: #f1c40f; color: #000; }
.purple { background: #8e44ad; }
.orange { background: #e67e22; }
.sky { background: #3498db; }
.violet { background: #9b59b6; }
.lime { background: #d4ef2a; color: #000; }

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 10px 0;
  flex-direction: row;
  text-align: center;
}

.contact-row p {
  font-size: 0.9rem;
  flex: 1 1 30%;
  text-shadow: 0 1px 2px black;
}
