.footer-section {
  background: #7EE787;
  border-radius: 48px 48px 0 0;
  padding: 1rem 1.5rem;
  margin-top: 5rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.footer-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  display: flex;
  width: 100%;
  justify-content: start;
  margin: 1rem 0;
  padding-top: 2rem;
}
.footer-logo img {
  width: 220px;
  height: auto;
}

.footer-divider {
  width: 100%;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  margin: 0 auto 32px auto;
}

.footer-bottom {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.footer-menu {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-link {
  color: #222;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
.footer-link:hover {
  color: #0a7a48;
}

.footer-social {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 1rem 0;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid #222;
  border-radius: 50%;
  background: transparent;
  transition: background 0.2s, border 0.2s;
}
.footer-social-icon svg {
  width: 28px;
  height: 28px;
}
.footer-social-icon:hover {
  background: #b6eebc;
  border-color: #0a7a48;
}

.footer-copy {
  color: #222;
  font-size: 1rem;
  margin-left: auto;
  opacity: 0.8;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .footer-bottom {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer-copy {
    margin-left: 0;
    margin-top: 8px;
  }
}
@media (max-width: 600px) {
  .footer-section {
    border-radius: 32px 32px 0 0;
    margin-top: 7rem;
  }
  .footer-inner {
    display: flex;
    justify-content: center;
  }
  .footer-logo {
    display: flex;
    justify-content: center;
  }
  .footer-divider {
    width: 100%;
    margin-bottom: 18px;
  }
  .footer-menu {
    gap: 18px;
    font-size: 0.95rem;
    display: flex;
    justify-content: center;
  }
  .footer-social {
    grid-row: 1/2 !important;
    margin-top: 3rem;
  }
  .footer-social-icon {
    width: 38px;
    height: 38px;
  }
  .footer-social-icon svg {
    width: 20px;
    height: 20px;
  }
  .footer-copy {
    font-size: 0.9rem;
    text-align: center;
  }
}