
.footer {
    background-color: #1c1f23;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
  }

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
  }

  .footer-column {
    flex: 1 1 220px;
    min-width: 200px;
  }

  .footer-column h4 {
    color: #4CAF50; /* Hijau brand */
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

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

  .footer-column li {
    margin-bottom: 8px;
  }

  .footer-column a {
    color: #e0e0e0;
    text-decoration: none;
  }

  .footer-column a:hover {
    color: #4CAF50;
    text-decoration: underline;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.9rem;
  }

  .footer-bottom a {
    color: #4CAF50;
    text-decoration: none;
    margin: 0 10px;
  }

  .footer-bottom a:hover {
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: flex-start;
    }

    .footer-column {
              width: 100%;
        /* height: max-content; */
        flex: 1;
        border-bottom: solid 1px #183b18;
        padding-bottom: 20px;
    }

    .footer-bottom {
      font-size: 0.85rem;
    }
  }