body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #1b1b1b; /* dark black */
  color: #f5f4ef;
}

a {
  text-decoration: none;
  color: inherit;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px;
}

.boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.big-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 300px;
  background: #a39c70; /* olive/tan */
  color: #1b1b1b;
  font-size: 2rem;
  font-family: 'Pacifico', cursive;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s, background 0.3s;
}

.big-box:hover {
  background: #91865d;
  transform: scale(1.05);
}

.employees-section {
  margin-top: 20px;
}

.btn.employees-btn {
  display: inline-block;
  background: #a39c70;
  color: #1b1b1b;
  padding: 15px 35px;
  border-radius: 15px;
  font-weight: 600;
  transition: transform 0.3s, background 0.3s;
}

.btn.employees-btn:hover {
  background: #91865d;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .boxes {
    flex-direction: column;
    gap: 20px;
  }

  .big-box {
    width: 80%;
    height: 200px;
    font-size: 1.8rem;
  }
}
