.main-content {
  flex-grow: 1;
  /* Pushes the footer to the bottom */
  padding: 2rem;
}

/* Yuanzhi Footer Styles */
.yuanzhi-footer {
  background-color: #1a202c;
  /* bg-gray-900 */
  color: #a0aec0;
  /* text-gray-400 */
  padding-top: 2.5rem;
  /* py-10 (half) */
  padding-bottom: 0.5rem;
  /* py-10 (half) */
  border-top-left-radius: 0.5rem;
  /* rounded-t-lg */
  border-top-right-radius: 0.5rem;
  /* rounded-t-lg */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  /* shadow-lg */
  width: 100%;
}

.yuanzhi-footer-container {
  max-width: 80rem;
  /* max-w-7xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  /* px-4 */
  padding-right: 1rem;
  /* px-4 */
}

/* Media queries for sm and lg breakpoints */
@media (min-width: 640px) {
  /* sm breakpoint */
  .yuanzhi-footer-container {
    padding-left: 1.5rem;
    /* sm:px-6 */
    padding-right: 1.5rem;
    /* sm:px-6 */
  }
}

@media (min-width: 1024px) {
  /* lg breakpoint */
  .yuanzhi-footer-container {
    padding-left: 2rem;
    /* lg:px-8 */
    padding-right: 2rem;
    /* lg:px-8 */
  }
}

.yuanzhi-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  /* grid-cols-1 */
  gap: 2rem;
  /* gap-8 */
}

@media (min-width: 768px) {
  /* md breakpoint */
  .yuanzhi-footer-grid {
    grid-template-columns: repeat(4, 1fr);
    /* md:grid-cols-4 */
  }

  .yuanzhi-footer-company-info {
    grid-column: span 1 / span 1;
    /* md:col-span-1 */
  }

  .yuanzhi-footer-links {
    grid-column: span 1 / span 1;
    /* md:col-span-1 */
  }

  .yuanzhi-footer-support {
    grid-column: span 1 / span 1;
    /* md:col-span-1 */
  }

  .yuanzhi-footer-contact-social {
    grid-column: span 1 / span 1;
    /* md:col-span-1 */
  }
}

.yuanzhi-footer-logo {
  display: block;
  /* block */
  margin-bottom: 1rem;
  /* mb-4 */
}

.yuanzhi-footer-logo img {
  height: 2.5rem;
  /* h-10 */
  border-radius: 0.25rem;
  /* rounded-md */
}

.yuanzhi-footer-description {
  font-size: 0.875rem;
  /* text-sm */
  line-height: 1.5;
  /* leading-relaxed */
  margin-bottom: 1rem;
  /* mb-4 */
}

.yuanzhi-footer-address {
  font-size: 0.875rem;
  /* text-sm */
}

.yuanzhi-footer-heading {
  font-size: 1.125rem;
  /* text-lg */
  font-weight: 600;
  /* font-semibold */
  color: #ffffff;
  /* text-white */
  margin-bottom: 1rem;
  /* mb-4 */
}

.yuanzhi-footer-nav-list,
.yuanzhi-footer-support-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  /* space-y-2 */
}

.yuanzhi-footer-link {
  font-size: 0.875rem;
  /* text-sm */
  color: #a0aec0;
  /* text-gray-400 */
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.yuanzhi-footer-link:hover {
  color: #cbd5e0;
  /* hover:text-gray-200 */
}

.yuanzhi-footer-email,
.yuanzhi-footer-phone {
  font-size: 0.875rem;
  /* text-sm */
  margin-bottom: 0.5rem;
  /* mb-2 for email, mb-4 for phone */
}

.yuanzhi-footer-social-links {
  display: flex;
  gap: 1rem;
  /* space-x-4 */
}

.yuanzhi-footer-social-icon {
  font-size: 1.25rem;
  /* text-xl */
  color: #a0aec0;
  /* text-gray-400 */
  transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
}

.yuanzhi-footer-social-icon:hover {
  transform: scale(1.1);
  color: #cbd5e0;
  /* hover:text-gray-200 */
}

.yuanzhi-footer-copyright {
  border-top: 1px solid #4a5568;
  /* border-t border-gray-700 */
  margin-top: 0.5rem;
  /* mt-8 */
  padding-top: 0.5rem;
  /* pt-8 */
  text-align: center;
  /* text-center */
  font-size: 0.875rem;
  /* text-sm */
}
