/* Footer Styles */
footer {
  background-color: #2c2c2c;
  color: white;
  padding: 2.5rem 5% 1.5rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
}

.footer-section p,
.footer-section a {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.6;
  text-decoration: none;
  margin-bottom: 0.4rem;
  overflow-wrap: break-word;
  word-break: break-all;
}

.footer-section a[href^="mailto"] {
  word-break: normal;
  overflow-wrap: normal;
  white-space: nowrap;
}

.footer-section a:hover {
  color: #fff;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-nav a {
  display: inline-block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: #888;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: #888;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}
