.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(129, 199, 132, 0.4);
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #66bb6a, #2e7d32);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
  font-size: 1.3rem;
  color: white;
  border: 2px solid white;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-brand {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(to right, #2e7d32, #1b5e20);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
  line-height: 1.2;
}

.logo-tagline {
  font-size: 0.65rem;
  color: #4caf50;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}