footer {
        background:rgb(224, 224, 224);
        color: #1a1a1a;
        padding: 40px 5% 0;
        font-family: Arial, sans-serif;
        font-size: 14px;
        margin-top: 30px;
        box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
    }

    .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
    }

    .footer-column {
        flex: 1 1 220px;
        text-align: left;
    }

    .footer-column h3 {
        color: #ff9900;
        margin-bottom: 10px;
    }

    .footer-column p {
        margin: 5px 0;
    }

    .footer-social a {
        color: #ff9900;
        margin-right: 10px;
        font-size: 18px;
        display: inline-block;
        margin-bottom: 6px;
    }

    footer nav a {
        display: block;
        color: #1a1a1a;
        text-decoration: none;
        margin-bottom: 6px;
        text-align: left;
    }

    footer nav a:hover {
        color: #ff9900;
    }

    .footer-contact-icons {
        line-height: 1.8;
    }

    .footer-contact-icons i {
        color: #ff9900;
        margin-right: 8px;
        min-width: 20px;
    }

    /* Form Subscribe */
    .footer-subscribe .input-group {
        display: flex;
        align-items: center;
        max-width: 260px;
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 4px;
        overflow: hidden;
        background: white;
    }

    .footer-subscribe .input-group input {
        flex: 1;
        padding: 8px 10px;
        border: none;
        outline: none;
        font-size: 14px;
        box-sizing: border-box;
    }

    .footer-subscribe .input-group button {
        background-color: #0a3d2c;
        border: none;
        padding: 8px 14px;
        color: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        border-left: 1px solid #ccc;
        height: 100%;
    }

    .footer-subscribe .input-group button:hover {
        background-color: #095f41;
    }

    /* Bar Hijau Full Width */
    .full-width-bottom {
        width: 100%;
        background-color: #0a3d2c;
        color: white;
        padding: 20px 0;
        text-align: center;
        margin: 0;
        font-size: 12px;
    }

    .full-width-bottom a {
        color: white;
        text-decoration: none;
        margin: 0 8px;
    }

    .full-width-bottom a:hover {
        color: #ffcc00;
    }

    /* Responsif */
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            align-items: flex-start;
        }

        .footer-subscribe .input-group {
            flex-direction: column;
            border: none;
        }

        .footer-subscribe .input-group input,
        .footer-subscribe .input-group button {
            width: 100%;
            border-radius: 4px;
        }

        .footer-subscribe .input-group button {
            margin-top: 6px;
            border-left: none;
        }
    }