.contact-section {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin: 60px 8%;
            font-family: Arial, sans-serif;
            color: #333;
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
        }

        .contact-info h4 {
            color: orange;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .contact-info h2 {
            font-size: 32px;
            margin-bottom: 10px;
        }

        .contact-info h2 span {
            color: #f5b301;
            font-weight: bold;
        }

        .contact-info p {
            margin-bottom: 20px;
            color: #666;
        }

        .info-list {
            list-style: none;
            padding: 0;
        }

        .info-list li {
            margin-bottom: 12px;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .info-list li i {
            color: rgb(0, 0, 0);
        }

        .contact-form {
            flex: 1.2;
            min-width: 300px;
        }

        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .form-row {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        input,
        select,
        textarea {
            flex: 1;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 14px;
            width: 100%;
        }

        textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background: #004d2c;
            color: #fff;
            padding: 8px 18px;
            border: none;
            border-radius: 20px;
            font-weight: bold;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            transition: background 0.3s ease;
            width: fit-content;
            /* << Membuat tombol hanya sepanjang isi teks */
            align-self: flex-start;
            /* << Agar tombol tidak memenuhi baris */
        }

        .submit-btn:hover {
            background: #f9a825;
        }

        @media(max-width: 768px) {
            .form-row {
                flex-direction: column;
            }

            .contact-section {
                flex-direction: column;
            }
        }