/* Footer Styles */
.footer {
  border-top: 3px solid white;
  background-color: #00274d;
  color: #fff;
  text-align: center;
  padding: 30px 15px;
}

.footer h3 {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.footer p {
  font-size: 1.1em;
  margin: 10px 0;
  line-height: 1.6;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.social-icons a {
  color: #fff;
  font-size: 1.5em;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #00274d  ;
}

.footer .rights {
  font-size: 0.9em;
  margin-top: 15px;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer h3 {
    font-size: 1.5em;
  }

  .footer p {
    font-size: 1em;
  }

  .social-icons a {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .footer h3 {
    font-size: 1.2em;
  }

  .footer p {
    font-size: 0.9em;
  }

  .social-icons a {
    font-size: 1.2em;
  }
}
