/* Footer Styles */
.footer {
  background-color: #260055;
  padding: 60px 0 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

/* Logo Column */
.footer-logo {
  flex: 0 0 280px;
}

.footer-logo img {
  max-width: 150px;
  height: auto;
  margin-bottom: 15px;
}

/* Quick Links Column */
.footer-quick-links {
  flex: 0 0 280px;
  text-align: left;
}

/* Contact Column */
.footer-contact {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-top: 5px;
}

.footer-contact-title {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  line-height: 1;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1;
}

.footer-email-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.footer-email {
  color: white;
  font-size: 16px;
  text-decoration: none;
  transition: opacity 0.3s;
  line-height: 24px;
}

.footer-email:hover {
  opacity: 0.8;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  text-align: center;
}
.quick-links-list {
  list-style: none;
  padding: 0;
}

.quick-links-list li {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.6) !important;
}
/* Responsive Design */
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo {
    flex: 0 0 auto;
  }

  .footer-contact {
    align-items: center;
  }

  .contact-item {
    justify-content: center;
  }
}