footer {
  width: 100%;
  max-width: 1200px;
  padding: 10px;

  border-radius: 20px;
  background-color: rgb(126, 197, 241);
  border: 2px solid rgb(81, 129, 158);
  box-shadow: 10px 10px 32px rgba(0, 0, 0, 0.5);

  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-section a {
  color: #0056b3;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #003d82;
  text-decoration: underline;
}
