/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.footer {
  background-color: #0b3c5d;
  color: white;
  padding: 80px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer h3, .footer h4 {
  margin-bottom: 15px;
  color: white;
}

.footer p {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.footer a {
  display: block;
  color: rgba(255,255,255,0.8);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-social h4 {
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons a svg {
  width: 20px;
  height: 20px;
}

.social-icons a:hover {
  background: white;
  color: #0b3c5d;
  transform: translateY(-3px);
}
