.custom-footer {
  background-color: #f8f4e8;
  color: #5a5a5a;
  padding: 50px 20px 20px 20px;
  font-family: 'Comfortaa';
  line-height: 1.6;
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.logo-motto-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.footer-column h3 {
  color: #91AD80;
  font-family: 'Comforter';
  font-size: 28px;
  margin-bottom: 15px;
  margin-top: 0;
  font-style: italic;
}

.footer-column p {
  font-size: 15px;
  font-style: italic;
  margin-top: 0;
  text-wrap-style: balance;
}

.footer-column h4 {
  color: #91AD80;
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #5a5a5a;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 15px;
}

.footer-links a:hover {
  color: #91AD80;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  text-decoration: none;
  color: #5a5a5a;
  transition: transform 0.3s;
}

.contact-item:hover {
  transform: translateX(5px);
  color: #91AD80;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  fill: #91AD80;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(145, 173, 128, 0.2);
  text-align: center;
  font-size: 13px;
  color: #888;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .logo-motto-column {
    align-items: center;
  }

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