.footer {
  background-color: #050e2b; /* bg-blue-900 */
  color: white;
}

.footerContent {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem 0; /* gap-y-9 */
  font-size: 1rem;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .footerContent {
    padding-top: 7rem;
    padding-bottom: 7rem;
    display: flex;
    gap: 1.25rem; /* md:gap-5 */
  }
}

.logoSection {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  display: none;
}

@media (min-width: 768px) {
  .logoSection {
    margin-right: 4rem;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
  }
}

.logo {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .logo {
    margin-bottom: 1.5rem;
  }
}

.logoImage {
  max-width: 7rem;
  height: auto;
}

@media (min-width: 768px) {
  .logoImage {
    max-width: 100%;
  }
}

.description {
  color: #d1d5db;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  margin-top: 1.25rem;
}

@media (min-width: 768px) {
  .description {
    max-width: 21.875rem;
    margin-top: 5rem;
  }
}

.socialLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.socialLink {
  color: white;
  transition: color 0.3s;
}

.socialLink:hover {
  color: #60a5fa; /* hover:text-blue-400 */
}

.socialIcon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0f1a2e; /* bg-navy-800 */
  border-radius: 0.375rem;
  padding: 0.375rem;
}

.socialIcon svg {
  fill: currentColor;
}

.contactSection {
  font-size: 1rem;
  order: 4;
}

@media (min-width: 768px) {
  .contactSection {
    order: 0;
  }
}

.sectionTitle {
  font-size: 1rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
}

.contactInfo {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.contactItem {
  color: white;
  font-size: 0.75rem;
}

@media (min-width: 640px) {
  .contactItem {
    font-size: 1rem;
  }
}

.emailLink {
  color: #60a5fa; /* text-blue-400 */
  text-decoration: none;
}

.emailLink:hover {
  text-decoration: underline;
}

.linksSection {
  grid-column: span 1;
}

.linksList {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.linksList a {
  color: white;
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.3s;
}

@media (min-width: 640px) {
  .linksList a {
    font-size: 1rem;
  }
}

.linksList a:hover {
  color: #5e00a5; /* Assuming 'text-primary' = #5e00a5 */
}

.copyright {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid #1f2937; /* border-dark */
  max-width: 100%;
  margin: 0 auto;
}

.copyright p {
  text-align: center;
  color: #9ca3af; /* text-gray-400 */
  font-size: 0.875rem;
}

.bg-navy-800 {
  background-color: #0f1a2e;
}

.bg-navy-900 {
  background-color: #0a1022;
}
