    .hubungi-section {
        background: #fafafa;
        padding: 80px 120px;
    }

    .hubungi-title {
        text-align: center;
        font-size: 42px;
        font-weight: 700;
        color: #0c6b1c;
        margin-bottom: 60px;
    }

    .hubungi-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
    }

    .contact-card {
        display: flex;
        align-items: center;
        gap: 18px;
        background: #c7d9b7;
        padding: 18px 22px;
        border-radius: 14px;
        margin-bottom: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: 0.3s;
    }

    .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
    }

    .contact-card i {
        font-size: 28px;
        color: #0c6b1c;
    }

    .contact-card h3 {
        font-size: 18px;
        color: #0c6b1c;
        margin: 0;
    }

    .contact-card p {
        font-size: 14px;
        margin: 3px 0 0 0;
    }

    .contact-card a {
        color: #000000;
        text-decoration: none;
    }

    .hubungi-form {
        background: white;
        padding: 30px;
        border-radius: 14px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .hubungi-form form {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .hubungi-form input,
    .hubungi-form textarea {
        background: #d9e6b7;
        border: none;
        padding: 14px 16px;
        border-radius: 8px;
        font-size: 14px;
    }

    .hubungi-form textarea {
        height: 100px;
        resize: none;
    }

    .hubungi-form button {
        border: none;
        padding: 14px;
        border-radius: 8px;
        color: white;
        font-weight: 600;
        background: linear-gradient(90deg, #2f6f3c, #cfe39a);
        cursor: pointer;
        transition: 0.3s;
    }

    .hubungi-form button:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }