.footer {
  background-color: rgba(33, 104, 186, 1);
  color: white;
  width: 100%;
  box-sizing: border-box;
  padding: 0 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  
  justify-content: flex-start;
  padding: 90px 2rem;
  gap: 80px;
}

/* Logo Section */
.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-logo img {
  max-width: 100%;
  height: auto;
}

/* Footer Column 1 */
.footer-column1 {
  flex: 1 1 45%;
  max-width: 45%;
  padding: 0 2rem;
}

.footer-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: white;
  max-width: 600px;
}

.column2 {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

/* Titles */
.footer-title {
  font-family: 'Rammetto One', cursive;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 1.2rem;
}

/* List Groups */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* List Items */
.footer-links li,
.footer-contact li {
  font-size: 16px;
  color: white;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.footer-links li:hover,
.footer-contact li:hover {
  color: #FFD700;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .footer-container {
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .footer-column1 {
    max-width: 100%;
    flex: 1 1 100%;
    padding: 0;
  }

  .column2 {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links,
  .footer-contact {
    flex: 1 1 100%;
  }

  .footer-logo {
    justify-content: center;
  }
}
