* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #f4f6f9;
  color: #2c3e50;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(to right, #1b5e20, #2e7d32);
  padding: 60px 20px;
  color: white;
  text-align: center;
}

.page-header h1 {
  font-size: 36px;
  font-weight: 700;
}

.page-header p {
  margin-top: 10px;
  font-size: 16px;
  opacity: 0.9;
}

/* ===== SEARCH SECTION ===== */
.search-section {
  display: flex;
  justify-content: center;
  margin-top: -40px;
  padding: 0 20px;
}

.search-card {
  background: white;
  width: 100%;
  max-width: 1000px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 200px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #555;
}

select {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.2s;
}

select:focus {
  border-color: #2e7d32;
  outline: none;
}

/* ===== BUTTON ===== */
.primary-btn {
  padding: 12px 25px;
  background-color: #2e7d32;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.primary-btn:hover {
  background-color: #1b5e20;
}

/* ===== RESULTS ===== */
.results-section {
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}

.office-grid {
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.office-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.office-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.office-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #2e7d32;
}

.office-card p {
  font-size: 14px;
  margin-bottom: 6px;
  color: #555;
}