footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #ecf0f1;
  padding: 48px 32px 24px;
  margin-top: 60px;
  border-top: 3px solid #3498db;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: #3498db;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.1em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section p {
  margin: 8px 0;
  line-height: 1.6;
  font-size: 0.95em;
}

.footer-section a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #3498db;
}

.footer-address {
  background: rgba(52, 152, 219, 0.1);
  padding: 16px;
  border-radius: 6px;
  border-left: 3px solid #3498db;
  margin-top: 12px;
}

.footer-address p {
  margin: 6px 0;
  font-size: 0.9em;
}

.footer-bottom {
  border-top: 1px solid rgba(236, 240, 241, 0.2);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85em;
  color: #bdc3c7;
}

.footer-logo {
  height: 200px;
  width: auto;
  margin-bottom: 12px;
  opacity: 0.9;
  transition: opacity 0.3s;
  object-fit: contain;
}

.footer-logo:hover {
  opacity: 1;
}

.footer-section {
  display: flex;
  flex-direction: column;
}