body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
    }

    footer {
      background-color: #9E2A61;
      color: #fff;
      padding: 40px 20px;
    }

    .footer-container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 20px;
    }

    .footer-left, .footer-right {
      flex: 1 1 300px;
    }
    

    .footer-logo img {
      width: 80px;
      margin-bottom: 10px;
    }

    .footer-address {
      font-size: 15px;
      line-height: 1.6;
    }

    .footer-social {
      text-align: right;
    }

    .footer-social a {
      margin-left: 15px;
      color: #fff;
      font-size: 20px;
      transition: color 0.3s ease;
    }

    .footer-social a:hover {
      color: #ffd9ec;
    }

    .footer-bottom {
      text-align: right;
      font-size: 13px;
      margin-top: 20px;
      color: #ffe3f1;
    }

    /* Mobile: Rata kanan semua */
    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        text-align: right;
      }

      .footer-left,
      .footer-right,
      .footer-logo,
      .footer-address,
      .footer-social,
      .footer-bottom {
        text-align: center;
      }
      
      .footer-logo {
          width: 200px;
      }

      .footer-social a {
        margin-left: 10px;
        margin-right: 0;
      }
    }