.footer {
  background: linear-gradient(rgba(2 1 66 / 70%), rgba(0 37 145 / 70%)),
              url('/api/placeholder/1920/400') center/cover;
  color: white;
  padding: 40px 0;
  font-family: Arial, sans-serif !important;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: white;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 15px;
}

.contact-info {
  list-style: none;
  padding: 0;
  font-family: Arial, sans-serif !important;
}

.contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-info i {
  color: #1f354e;
  font-size: 18px;
  
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: white;
  font-size: 20px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ffd700;
}

/* Updated partnership image size */
.partnership {
  width: 80px;  /* Reduced from 120px */
  height: 80px; /* Added fixed height to maintain aspect ratio */
  object-fit: contain; /* Ensures the image maintains its aspect ratio */
  display: block; /* Removes any unwanted space below the image */
  margin-bottom: 10px; /* Adds some space below the image */
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 14px;
  font-family: Arial, sans-serif !important;
}